Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update CI #88

Merged
merged 2 commits into from
May 6, 2024
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
10 changes: 5 additions & 5 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: 'true'
- name: make
Expand All @@ -36,7 +36,7 @@ jobs:
name: Build and run tests on MacOS M1 (ARM64)
runs-on: macos-14
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: 'true'
- name: make
Expand All @@ -57,7 +57,7 @@ jobs:
name: Build and run tests on Windows
runs-on: windows-2019
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: 'true'
- name: Setup 32-bit compiler
Expand All @@ -74,7 +74,7 @@ jobs:
- name: make
run: |
i686-w64-mingw32-gcc -v
make -j2
make OPTFLAGS="-O2 -static" -j2
shell: bash
- name: running testsuite
run: make test -j2
Expand All @@ -97,7 +97,7 @@ jobs:
- name: make
run: |
x86_64-w64-mingw32-gcc -v
make -j2
make OPTFLAGS="-O2 -static" -j2
shell: bash
- name: running testsuite
run: make test -j2
Expand Down
Loading