Skip to content

Commit

Permalink
Update continuous OSX to 13 (#3004)
Browse files Browse the repository at this point in the history
* Update continuous OSX to 13

This is to fix the flaky llama engine segfaults on CI.

* Add libomp
  • Loading branch information
zachgk authored and frankfliu committed Apr 26, 2024
1 parent d475652 commit 6e17ebe
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/continuous.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ ubuntu-latest, macos-12 ]
operating-system: [ ubuntu-latest, macos-13 ]

steps:
- uses: actions/checkout@v4
Expand All @@ -50,6 +50,9 @@ jobs:
filters: |
src:
- 'extensions/sentencepiece/**'
- name: install libomp on macos
if: ${{ runner.os == 'macOS' }}
run: brew install libomp
- name: Compile Sentencepiece JNI
if: steps.sentencepiece_changes.outputs.src == 'true'
run: ./gradlew :extensions:sentencepiece:compileJNI
Expand Down

0 comments on commit 6e17ebe

Please sign in to comment.