Skip to content

Commit

Permalink
Update sw.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
egorpugin authored May 12, 2024
1 parent 0ad6efc commit f3974d4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/sw.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [windows-2022, macos-13]
os: [windows-2022, macos-latest]
include:
- os: ubuntu-22.04
container: fedora:latest
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
shell: pwsh

- name: test
if: github.event_name != 'pull_request' && (matrix.os != 'windows-2022' && matrix.os != 'macos-13')
if: github.event_name != 'pull_request' && (matrix.os != 'windows-2022' && matrix.os != 'macos-latest')
run: ./sw -static -shared -config "d,r" test -Dwith-tests=1 "-Dskip-tests=lstm,lstm_recode"
continue-on-error: true
- name: test
Expand All @@ -76,13 +76,13 @@ jobs:
continue-on-error: true

- name: test-nightly
if: matrix.os != 'windows-2022' && matrix.os != 'macos-13' && github.event.schedule=='0 0 * * *'
if: matrix.os != 'windows-2022' && matrix.os != 'macos-latest' && github.event.schedule=='0 0 * * *'
run: ./sw -static -shared -config "d,r" test -Dwith-tests=1
continue-on-error: true

# windows and macos-13 tests hang here for some reason, investigate
# windows and macos-latest tests hang here for some reason, investigate
#- name: test
#if: matrix.os == 'windows-2022' || matrix.os == 'macos-13'
#if: matrix.os == 'windows-2022' || matrix.os == 'macos-latest'
#run: ./sw test -Dwith-tests=1 "-Dskip-tests=lstm,lstm_recode"
#continue-on-error: true

Expand Down

0 comments on commit f3974d4

Please sign in to comment.