Skip to content

Commit

Permalink
[build.yml] Using latest runner for macos and linux
Browse files Browse the repository at this point in the history
  • Loading branch information
3dJan committed Nov 3, 2023
1 parent 254d2b7 commit c60f765
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ on: [push, pull_request]
name: Build
jobs:
build-linux:
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
steps:
- run: sudo apt install -y valgrind uuid-dev
- uses: actions/checkout@v2
Expand All @@ -25,7 +25,7 @@ jobs:
name: bindings.zip
path: build/bindings.zip
build-macos:
runs-on: macos-10.15
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
with:
Expand All @@ -42,7 +42,7 @@ jobs:
path: build/lib3mf.dylib

codecoverage-macos:
runs-on: macos-10.15
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
with:
Expand Down Expand Up @@ -139,7 +139,7 @@ jobs:
- run: ctest -V
working-directory: ./build
assemble-sdk:
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
needs: [build-windows-release, build-linux, build-macos]
steps:
- run: sudo apt install -y zip unzip
Expand All @@ -161,7 +161,7 @@ jobs:
name: lib3mf_sdk.zip
path: build/lib3mf_sdk.zip
deploy-linux:
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
needs: [assemble-sdk]
steps:
- run: sudo apt install -y zip unzip
Expand Down Expand Up @@ -213,7 +213,7 @@ jobs:
cmake --build . --config Release
./Release/Example_ExtractInfo.exe ../../Files/Helix.3mf
deploy-macos:
runs-on: macos-10.15
runs-on: macos-latest
needs: [assemble-sdk]
steps:
- name: Download lib3mf_sdk artifact
Expand Down

0 comments on commit c60f765

Please sign in to comment.