Skip to content

Commit 962c2e0

Browse files
authored
Merge pull request #447 from OutpostUniverse/addGitHubActionsLinuxJob
Add GitHub Actions job for Linux builds
2 parents 5518c3d + 66b3cbd commit 962c2e0

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,3 +56,21 @@ jobs:
5656
- name: Test
5757
working-directory: OP2UtilityTest/
5858
run: ../${{env.Platform}}/${{env.Configuration}}/OP2UtilityTest.exe
59+
60+
linux:
61+
strategy:
62+
fail-fast: false
63+
matrix:
64+
compiler: [g++, clang++]
65+
runs-on: ubuntu-latest
66+
container:
67+
image: ghcr.io/outpostuniverse/op2utility:1.2
68+
env:
69+
CXX: ${{ matrix.compiler }}
70+
71+
steps:
72+
- uses: actions/checkout@v6
73+
74+
- run: make
75+
- run: make test
76+
- run: make check

0 commit comments

Comments
 (0)