Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 12 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,19 @@ jobs:
name: Run Checks and Build
strategy:
matrix:
os:
- windows-latest
- ubuntu-20.04
- macos-latest
include:
- os: windows-latest
- os: ubuntu-latest
container: ubuntu:20.04
- os: macos-latest
runs-on: ${{ matrix.os }}
container: ${{ matrix.container }}
steps:
- name: Install build dependencies (Ubuntu container)
if: matrix.container == 'ubuntu:20.04'
run: |
apt-get update && apt-get install -y build-essential git p7zip-full

- name: Checkout source
uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -69,7 +76,7 @@ jobs:
needs:
- build
if: github.event_name == 'push' && contains(github.ref, 'refs/tags')
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- name: Store git tag and date vars.
run: |
Expand Down
Loading