arm container building
This commit is contained in:
parent
e36515e6ab
commit
197d65220a
@ -5,12 +5,12 @@ on: [push]
|
|||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ${{ matrix.arch }}
|
||||||
name: Build & Unit Test
|
name: Build & Unit Test
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
matrix:
|
||||||
dotnet-version: [ '8.0.x' ]
|
dotnet-version: [ '8.0.x' ]
|
||||||
|
arch: ['ubuntu-latest', 'ubuntu-latest-arm']
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
@ -32,8 +32,11 @@ jobs:
|
|||||||
|
|
||||||
build-Docker:
|
build-Docker:
|
||||||
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ${{ matrix.arch }}
|
||||||
name: Build Containers
|
name: Build Containers
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
arch: ['ubuntu-latest', 'ubuntu-latest-arm']
|
||||||
needs: [build] # for ignoring bad builds
|
needs: [build] # for ignoring bad builds
|
||||||
if: github.event_name == 'push' && (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/'))
|
if: github.event_name == 'push' && (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/'))
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user