Skip to content

Commit 34e448f

Browse files
committed
Fixes for test workflow
1 parent 08f9f18 commit 34e448f

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

.github/workflows/test.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- clasp
2222
- cando
2323
os:
24-
- macos-latest
24+
- macos-13
2525
- ubuntu-latest
2626
mode:
2727
- faso
@@ -41,9 +41,9 @@ jobs:
4141
auto: yes
4242
- mode: bytecode-faso
4343
auto: yes
44-
- os: macos-latest
44+
- os: macos-13
4545
mode: faso
46-
- os: macos-latest
46+
- os: macos-13
4747
mode: bytecode
4848
auto: no
4949

@@ -57,15 +57,15 @@ jobs:
5757
sudo apt install -y binutils-gold clang-15 libclang-15-dev libclang-cpp15-dev llvm-15 llvm-15-dev libelf-dev libgmp-dev libunwind-dev ninja-build sbcl libnetcdf-dev libexpat1-dev libfmt-dev libboost-all-dev
5858
5959
- name: Install MacOS dependencies
60-
if: matrix.os == 'macos-latest'
60+
if: matrix.os == 'macos-13'
6161
run: |
6262
brew update
6363
brew upgrade
64-
brew install boost fmt gmp llvm@17 ninja pkg-config sbcl netcdf
64+
brew install boost fmt gmp llvm ninja pkg-config sbcl netcdf
6565
- name: Checkout repository
6666
uses: actions/checkout@v4
6767

68-
- uses: conda-incubator/setup-miniconda@v3.0.1
68+
- uses: conda-incubator/setup-miniconda@v3.0.4
6969
if: matrix.build == 'cando'
7070

7171
- name: Install AmberTools
@@ -82,13 +82,13 @@ jobs:
8282
run: |
8383
./koga --build-mode=${{ matrix.mode }} --extensions=cando,seqan-clasp
8484
- name: Clasp koga @ MacOS
85-
if: ${{ matrix.os == 'macos-latest' && matrix.build == 'clasp' }}
85+
if: ${{ matrix.os == 'macos-13' && matrix.build == 'clasp' }}
8686
run: |
87-
./koga --build-mode=${{ matrix.mode }} --llvm-config=/usr/local/opt/llvm@15/bin/llvm-config
87+
./koga --build-mode=${{ matrix.mode }}
8888
- name: Cando koga @ MacOS
89-
if: ${{ matrix.os == 'macos-latest' && matrix.build == 'cando' }}
89+
if: ${{ matrix.os == 'macos-13' && matrix.build == 'cando' }}
9090
run: |
91-
./koga --build-mode=${{ matrix.mode }} --extensions=cando,seqan-clasp --llvm-config=/usr/local/opt/llvm@15/bin/llvm-config
91+
./koga --build-mode=${{ matrix.mode }} --extensions=cando,seqan-clasp
9292
- name: Build
9393
run: |
9494
ninja -C build

0 commit comments

Comments
 (0)