Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
lcswillems committed Nov 29, 2024
1 parent 9ed9342 commit be5ae75
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 9 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,11 @@ on:

jobs:
build-and-test:
runs-on: ubuntu-22.04
strategy:
matrix:
os: [ubuntu-latest, macos-latest]

runs-on: ${{ matrix.os }}

steps:
- name: Checkout
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release-scenexec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ jobs:
build:
strategy:
matrix:
os: [ubuntu-22.04, macos-12]
os: [ubuntu-22.04, macos-13]
include:
- os: ubuntu-22.04
wasmer_lib: libwasmer_linux_amd64.so
wasmer2_lib: libvmexeccapi.so
flags: -ldflags "-extldflags '-Wl,-rpath,\$ORIGIN'"
- os: macos-12
- os: macos-13
wasmer_lib: libwasmer_darwin_amd64.dylib
wasmer2_lib: libvmexeccapi.dylib
flags: -ldflags "-extldflags '-Wl,-rpath,@loader_path'"
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:

strategy:
matrix:
os: [ubuntu-22.04, macos-12]
os: [ubuntu-22.04, macos-13]

runs-on: ${{ matrix.os }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-xsuite-fullsimulnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
build:
strategy:
matrix:
os: [macos-12, ubuntu-22.04]
os: [macos-13, ubuntu-22.04]

runs-on: ${{ matrix.os }}

Expand Down Expand Up @@ -40,7 +40,7 @@ jobs:

strategy:
matrix:
os: [macos-12, ubuntu-22.04]
os: [macos-13, ubuntu-22.04]

runs-on: ${{ matrix.os }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-xsuite-lightsimulnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
build:
strategy:
matrix:
os: [macos-12, ubuntu-22.04]
os: [macos-13, ubuntu-22.04]

runs-on: ${{ matrix.os }}

Expand Down Expand Up @@ -40,7 +40,7 @@ jobs:

strategy:
matrix:
os: [macos-12, ubuntu-22.04]
os: [macos-13, ubuntu-22.04]

runs-on: ${{ matrix.os }}

Expand Down
2 changes: 1 addition & 1 deletion xsuite/src/cli/testScenCmd.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export function getBinaryOs() {
return "ubuntu-20.04";
/* istanbul ignore next */
case "darwin":
return "macos-12";
return "macos-13";
/* istanbul ignore next */
default:
throw new Error(`Unsupported platform: ${process.platform}`);
Expand Down

0 comments on commit be5ae75

Please sign in to comment.