Skip to content

Commit

Permalink
added workflow actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ypujante committed Dec 2, 2024
1 parent 5049347 commit 0edcfad
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/run-tests-macos-action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Run Tests (macOS)

on:
push:
branches:
- 'master'
tags-ignore:
- '*'

jobs:
run_tests:

runs-on: macos-14

steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Configure Project
working-directory: ${{github.workspace}}
run: ${{github.workspace}}/jamba-test-plugin/configure.py -- -DJAMBA_DOWNLOAD_VSTSDK=ON

- name: Run test/validate/archive (Release)
working-directory: ${{github.workspace}}/build
run: ./jamba.sh --release -b test validate archive
25 changes: 25 additions & 0 deletions .github/workflows/run-tests-windows-action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Run Tests (Windows)

on:
push:
branches:
- 'master'
tags-ignore:
- '*'

jobs:
run_tests:
runs-on: windows-2022

steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Configure Project
working-directory: ${{github.workspace}}
run: python ${{github.workspace}}\jamba-test-plugin\configure.py -G "Visual Studio 17 2022" -- -DJAMBA_DOWNLOAD_VSTSDK=ON -A x64

- name: Run test/validate/archive (Release)
working-directory: ${{github.workspace}}/build
run: .\jamba.bat --release -b test validate archive

0 comments on commit 0edcfad

Please sign in to comment.