Skip to content

Commit

Permalink
try using haswell
Browse files Browse the repository at this point in the history
  • Loading branch information
Vexu committed Dec 3, 2023
1 parent 6891803 commit ec57d25
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
Expand All @@ -30,18 +30,18 @@ jobs:
run: zig fmt . --check
if: matrix.os == 'ubuntu-latest'

- name: Build
run: zig build
# - name: Build
# run: zig build

- name: Build 32-bit
run: zig build -Dtarget=arm-linux
if: matrix.os == 'ubuntu-latest'
# - name: Build 32-bit
# run: zig build -Dtarget=arm-linux
# if: matrix.os == 'ubuntu-latest'

- name: Build release
run: zig build -Doptimize=ReleaseSafe
# - name: Build release
# run: zig build -Doptimize=ReleaseSafe

- name: Run Tests
run: zig build test
# - name: Run Tests
# run: zig build test

- name: Run Tests in release mode
run: zig build test -Doptimize=ReleaseFast
run: zig build test -Doptimize=ReleaseFast -Dcpu=haswell+aes

0 comments on commit ec57d25

Please sign in to comment.