-
-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GHA - build Debug and Release unit tests in parallel
- Loading branch information
1 parent
c6c5d1a
commit d08c32d
Showing
1 changed file
with
6 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,18 @@ | ||
name: Build and Test | ||
on: [workflow_dispatch] | ||
jobs: | ||
build: | ||
runs-on: [macos-13] | ||
run-unit-tests: | ||
runs-on: macos-13 | ||
env: | ||
XC_VERSION: ${{ '15.1' }} | ||
strategy: | ||
matrix: | ||
configuration: ["Debug", "Release"] | ||
steps: | ||
- name: Select latest Xcode | ||
run: "sudo xcode-select -s /Applications/Xcode_$XC_VERSION.app" | ||
- uses: actions/checkout@v2 | ||
- name: Build and run unit tests | ||
run: | | ||
cd Scripts | ||
./run_all_unit_tests.sh | ||
./run_all_unit_tests.sh ${{ matrix.configuration }} |