|
@@ -23,10 +23,10 @@ jobs:
|
|
|
runs-on: ubuntu-latest-large
|
|
runs-on: ubuntu-latest-large
|
|
|
- name: linux-arm64
|
|
- name: linux-arm64
|
|
|
runs-on: [self-hosted, linux, arm64]
|
|
runs-on: [self-hosted, linux, arm64]
|
|
|
- container: ubuntu
|
|
|
|
|
|
|
+ container: ubuntu:24.04
|
|
|
- name: linux-musl-x64
|
|
- name: linux-musl-x64
|
|
|
runs-on: ubuntu-latest-large
|
|
runs-on: ubuntu-latest-large
|
|
|
- container: alpine
|
|
|
|
|
|
|
+ container: alpine:3.18
|
|
|
- name: osx-x64
|
|
- name: osx-x64
|
|
|
runs-on: macos-latest-large
|
|
runs-on: macos-latest-large
|
|
|
- name: osx-arm64
|
|
- name: osx-arm64
|
|
@@ -40,13 +40,19 @@ jobs:
|
|
|
- name: Install Build Tools (Linux)
|
|
- name: Install Build Tools (Linux)
|
|
|
if: matrix.runtime.name == 'linux-x64' || matrix.runtime.name == 'linux-arm64'
|
|
if: matrix.runtime.name == 'linux-x64' || matrix.runtime.name == 'linux-arm64'
|
|
|
shell: sh
|
|
shell: sh
|
|
|
- run: apt install bash wget
|
|
|
|
|
|
|
+ run: |
|
|
|
|
|
+ apt update
|
|
|
|
|
+ apt upgrade
|
|
|
|
|
+ apt install bash wget
|
|
|
|
|
|
|
|
|
|
|
|
|
- name: Install Build Tools (Alpine)
|
|
- name: Install Build Tools (Alpine)
|
|
|
if: matrix.runtime.name == 'linux-musl-x64'
|
|
if: matrix.runtime.name == 'linux-musl-x64'
|
|
|
shell: sh
|
|
shell: sh
|
|
|
- run: apk add bash wget
|
|
|
|
|
|
|
+ run: |
|
|
|
|
|
+ apk update
|
|
|
|
|
+ apk upgrade
|
|
|
|
|
+ apk add bash wget
|
|
|
|
|
|
|
|
|
|
|
|
|
- name: Setup dotnet
|
|
- name: Setup dotnet
|