Skip to content

Commit

Permalink
fixup! dfhguiuio
Browse files Browse the repository at this point in the history
  • Loading branch information
Baekalfen committed May 7, 2024
1 parent a5acaf9 commit 245a56f
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,11 +130,11 @@ jobs:
name: "distribution builds"

needs: [sanity]

runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [macos-latest, ubuntu-latest]
container:
- {os: 'almalinux', ver: '8'}
- {os: 'almalinux', ver: '9'}
Expand All @@ -153,10 +153,11 @@ jobs:
- {os: 'ubuntu', ver: 'lunar'}
- {os: 'ubuntu', ver: 'jammy'}
- {os: 'ubuntu', ver: 'focal'}
- {os: 'macos', ver: 'latest'}

container:
image: ${{ matrix.container.os }}:${{ matrix.container.ver }}
container: ${{ matrix.os == 'ubuntu-latest' && format('docker://{0}:{1}', matrix.container.os, matrix.container.ver) || '' }}
# container:
# image: ${{ matrix.container.os }}:${{ matrix.container.ver }}
# enabled: ${{ contains(matrix.os, 'ubuntu') }}

steps:
- name: checkout
Expand Down

0 comments on commit 245a56f

Please sign in to comment.