Skip to content

Commit

Permalink
build cmake on gha, only windows for now
Browse files Browse the repository at this point in the history
  • Loading branch information
TheoPannetier committed Oct 27, 2023
1 parent 08bb790 commit 4cb4f39
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,21 @@ jobs:
check:
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
os: [windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3

- name: build
run: g++ -o ./run_on_gha/rs_test_project/rs.exe ./src/*.cpp ./src/RScore/*.cpp -DRSDEBUG -DLINUX_CLUSTER -DRSWIN64
run: |
mkdir build
cd build
cmake ../
cmake --build .
- name: run
run: |
cd ./run_on_gha/rs_test_project
./rs.exe
build/Debug/Rangeshifter.exe run_on_gha/rs_test_project/
- name: check_output
run: |
Expand Down

0 comments on commit 4cb4f39

Please sign in to comment.