Skip to content

Commit

Permalink
WIP: Add an OSX CI build
Browse files Browse the repository at this point in the history
  • Loading branch information
dfandrich committed Feb 4, 2024
1 parent 95a5410 commit b9d741a
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,3 +89,16 @@ jobs:
run: make clean && make linux LINUX_CC=x86_64-w64-mingw32-gcc-10-posix
- name: 'Run tests with mingw32-posix+wine'
run: make test TESTWRAPPER=./wine-wrapper

osx-12:
runs-on: macos-12
steps:
- uses: actions/checkout@v4
- name: 'Compile with gcc'
run: uname -a; make linux
- name: 'Run tests with gcc'
run: make test
- name: 'Compile fat binary with gcc'
run: make clean && make linux LINUX_CC=cc LINUX_CFLAGS='-O2 -DUNIX -arch arm64 -arch x86_64'
- name: 'Run tests with fat binary with gcc'
run: file fvcbm; make test

0 comments on commit b9d741a

Please sign in to comment.