.
This commit is contained in:
48
.github/workflows/build.yaml
vendored
48
.github/workflows/build.yaml
vendored
@ -12,29 +12,53 @@ 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
|
- 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
|
||||||
|
|
||||||
windows:
|
windows:
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
defaults:
|
defaults:
|
||||||
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
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user