Skip to content

Commit

Permalink
test SH-runner
Browse files Browse the repository at this point in the history
  • Loading branch information
sylvainthery committed Jul 15, 2024
1 parent d9662fc commit 48a3cf9
Showing 1 changed file with 14 additions and 11 deletions.
25 changes: 14 additions & 11 deletions .github/workflows/cmake-multi-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,20 @@ jobs:
mkdir Build
cd Build
cmake ..
cmake --build .
cmake --build --parallel 8 .
build-OsX:
name: 'On Mac'
runs-on: MyPortMac
steps:
- uses: actions/checkout@v1
- name: 'Trying to compile ASTEx on mac'
run: |
mkdir Build
cd Build
cmake ..
cmake --build --parallel 8 .
build-windows:
name: 'On Windows'
Expand All @@ -41,13 +54,3 @@ jobs:
cd Build
cmake --debug-find .. "-DCMAKE_TOOLCHAIN_FILE=C:\vcpkg\scripts\buildsystems\vcpkg.cmake"
cmake --build .
build-OsX:
name: 'On Mac'
runs-on: MyPortMac
steps:
- uses: actions/checkout@v1
- name: 'Trying to compile ASTEx on mac'
run: |
mkdir Build
cd Build
cmake --build .

0 comments on commit 48a3cf9

Please sign in to comment.