Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ jobs:
CC: gcc-8
CXX: g++-8

- name: Run SQF-VM Tests
run: build/sqfvm -a -i tests/runTests.sqf

- name: Upload Linux x64 binaries
uses: actions/upload-artifact@v2
with:
Expand All @@ -30,6 +33,9 @@ jobs:
- name: Build macOS
run: mkdir build && cd build && cmake .. && make

- name: Run SQF-VM Tests
run: build/sqfvm -a -i tests/runTests.sqf

- name: Upload macOS binaries
uses: actions/upload-artifact@v2
with:
Expand All @@ -45,6 +51,9 @@ jobs:
- name: Build Windows Win32
run: mkdir build && cd build && cmake -G "Visual Studio 16 2019" -A Win32 .. && cmake --build . --config Release

- name: Run SQF-VM Tests
run: build/Release/sqfvm.exe -a -i tests/runTests.sqf

- name: Upload Windows Win32 binaries
uses: actions/upload-artifact@v2
with:
Expand All @@ -60,6 +69,9 @@ jobs:
- name: Build Windows x64
run: mkdir build && cd build && cmake -G "Visual Studio 16 2019" -A x64 .. && cmake --build . --config Release

- name: Run SQF-VM Tests
run: build/Release/sqfvm.exe -a -i tests/runTests.sqf

- name: Upload Windows x64 binaries
uses: actions/upload-artifact@v2
with:
Expand Down