Skip to content

Commit

Permalink
try fix windows tests
Browse files Browse the repository at this point in the history
[skip linux]
[skip macos]
[skip avx]
  • Loading branch information
prudhomm committed Jul 8, 2023
1 parent d0795e5 commit efa1a40
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/pull_request_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
build_linux:
name: Build for linux
if: "!contains(github.event.head_commit.message, 'skip linux')"
if: "!contains(github.event.head_commit.message, '[skip linux]')"
runs-on: ${{ matrix.os }}
continue-on-error: true
strategy:
Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:
build_linux_avx512:
name: Build for linux AVX512
if: "!contains(github.event.head_commit.message, 'skip avx')"
if: "!contains(github.event.head_commit.message, '[skip avx]')"
runs-on: ${{ matrix.os }}
continue-on-error: true
strategy:
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
build_macos:
name: Build for macOS
if: "!contains(github.event.head_commit.message, 'skip macos')"
if: "!contains(github.event.head_commit.message, '[skip macos]')"
runs-on: macOS-latest
continue-on-error: true
strategy:
Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:
build_windows:
name: Build for Windows
if: "!contains(github.event.head_commit.message, 'skip windows')"
if: "!contains(github.event.head_commit.message, '[skip windows]')"
runs-on: windows-2019
continue-on-error: true
strategy:
Expand Down Expand Up @@ -137,7 +137,7 @@ jobs:
build_windows_avx512:
name: Build for Windows
if: "!contains(github.event.head_commit.message, 'skip windows-avx')"
if: "!contains(github.event.head_commit.message, '[skip windows-avx]')"
runs-on: windows-2019
continue-on-error: true
strategy:
Expand Down
1 change: 1 addition & 0 deletions CMakePresets.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@
{
"name": "default",
"configurePreset": "default",
"configuration": "Release",
"output": {
"outputOnFailure": true
},
Expand Down

0 comments on commit efa1a40

Please sign in to comment.