This commit is contained in:
x
2023-04-07 13:26:29 +02:00
parent 1cc6376d61
commit 1b3a07464b

View File

@ -12,13 +12,35 @@ jobs:
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
os: [ubuntu-latest, macos-latest] os: [ubuntu-latest]
compiler: ["gcc", "clang"] compiler: ["gcc", "clang"]
env: env:
CC: ${{ matrix.compiler }} CC: ${{ matrix.compiler }}
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
with:
submodules: 'true'
- run: git submodule update --init --recursive
- run: make - run: make
- run: lscpu
- run: ./icapp ZIPF
macos:
runs-on: '${{ matrix.os }}'
strategy:
fail-fast: false
matrix:
os: [macos-latest]
compiler: ["clang"]
env:
CC: ${{ matrix.compiler }}
steps:
- uses: actions/checkout@v3
with:
submodules: 'true'
- run: git submodule update --init --recursive
- run: make
- run: sysctl -n machdep.cpu.brand_string
- run: ./icapp ZIPF - run: ./icapp ZIPF
windows: windows:
@ -27,14 +49,16 @@ jobs:
run: run:
shell: msys2 {0} shell: msys2 {0}
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- uses: msys2/setup-msys2@v2 with:
with: submodules: 'true'
msystem: MINGW64 - uses: msys2/setup-msys2@v2
install: make mingw-w64-x86_64-gcc with:
update: true msystem: MINGW64
- name: make install: git make mingw-w64-x86_64-gcc
run: | update: true
make - run: git submodule update --init --recursive
./icapp ZIPF - run: make
- run: ./icapp ZIPF