Skip to content

Commit

Permalink
Merge pull request #48 from ko-matsu/feature/upgrade-ci-20240908
Browse files Browse the repository at this point in the history
feat: update github workflow on 2024/09
  • Loading branch information
k-matsuzawa authored Sep 9, 2024
2 parents 171a35a + 34038e9 commit 9fbe0f9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check_push_cmake_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-2022, windows-2019, macos-14, macos-13, macos-12, ubuntu-22.04, ubuntu-20.04]
os: [windows-2022, windows-2019, macos-14, macos-13, macos-12, ubuntu-24.04, ubuntu-22.04, ubuntu-20.04]
generator: ['Unix Makefiles']
include:
- os: windows-2022
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/wasm-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ on:

jobs:
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

defaults:
run:
working-directory: ./src/wasm_package

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: true

Expand All @@ -38,7 +38,7 @@ jobs:

- run: npm test

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: libwally-npm
path: src/wasm_package/wallycore-*.tgz
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04, windows-2019, macos-11]
os: [ubuntu-22.04, windows-2019, macos-12]
env:
CIBW_BEFORE_ALL_LINUX: yum install -y swig || apk add swig
CIBW_BEFORE_ALL_MACOS: brew install gnu-sed swig automake
Expand All @@ -26,7 +26,7 @@ jobs:
SWIG_PATH: "C:\\ProgramData\\chocolatey\\lib\\swig\\tools\\install\\swigwin-3.0.12"

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 0
Expand All @@ -37,7 +37,7 @@ jobs:

- name: Install qemu aarch64
if: runner.os == 'Linux'
uses: docker/setup-qemu-action@v1
uses: docker/setup-qemu-action@v3
with:
platforms: arm64

Expand All @@ -48,6 +48,6 @@ jobs:
CIBW_ARCHS_LINUX: "x86_64 aarch64"
CIBW_ARCHS_MACOS: "x86_64 arm64 universal2"

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
path: ./wheelhouse/*.whl

0 comments on commit 9fbe0f9

Please sign in to comment.