Skip to content

Commit

Permalink
CI: add CI for ubuntu-20.04
Browse files Browse the repository at this point in the history
  • Loading branch information
Megamouse committed May 24, 2023
1 parent 4484546 commit 7b167e5
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,19 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
os: [ubuntu-20.04, ubuntu-latest, windows-latest, macos-latest]
config: [Release]
include:
- os: ubuntu-latest
triplet: x64-linux-release
upload-path: /home/runner/.cache/vcpkg/archives
vcpkg-root: /usr/local/share/vcpkg
extra-args: ""
- os: ubuntu-20.04
triplet: x64-linux-release
upload-path: /home/runner/.cache/vcpkg/archives
vcpkg-root: /usr/local/share/vcpkg
extra-args: ""
- os: windows-latest
triplet: x64-win-llvm-static-release
upload-path: C:\Users\runneradmin\AppData\Local\vcpkg\archives
Expand All @@ -42,6 +47,11 @@ jobs:
sudo apt -y install nasm
if: matrix.os == 'ubuntu-latest'

- name: Set up build environment (ubuntu-20.04)
run: |
sudo apt -y install nasm
if: matrix.os == 'ubuntu-20.04'

- name: Patch vcpkg
run: |
(cd ${{ matrix.vcpkg-root }} && git fetch origin)
Expand Down

0 comments on commit 7b167e5

Please sign in to comment.