mirror of
https://github.com/eosswedenorg/antelope-keygen
synced 2026-06-16 03:44:56 +02:00
.github/workflows/ci.yml: Adding support for Ubuntu 20.04
This commit is contained in:
parent
5bd72cec19
commit
145769970f
1 changed files with 7 additions and 2 deletions
9
.github/workflows/ci.yml
vendored
9
.github/workflows/ci.yml
vendored
|
|
@ -13,7 +13,7 @@ jobs:
|
|||
compile:
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ ubuntu-18.04, macos-latest, windows-latest ]
|
||||
os: [ ubuntu-20.04, ubuntu-18.04, macos-latest, windows-latest ]
|
||||
build: [ cli, cli-mt, cli-ansi, cli-ansi-mt, gui, gui-mt ]
|
||||
include:
|
||||
- build: cli
|
||||
|
|
@ -43,7 +43,12 @@ jobs:
|
|||
- name: Qt - Ubuntu
|
||||
if: startsWith(matrix.build, 'gui') && runner.os == 'Linux'
|
||||
shell: bash
|
||||
run: sudo apt-get install qt5-default=5.9.5+dfsg-0ubuntu2.5
|
||||
run: |
|
||||
if [ "${{matrix.os}}" == "ubuntu-20.04" ]; then
|
||||
sudo apt-get install qt5-default=5.12.8+dfsg-0ubuntu1
|
||||
else :
|
||||
sudo apt-get install qt5-default=5.9.5+dfsg-0ubuntu2.5
|
||||
fi
|
||||
|
||||
- name: Qt - Windows/Mac
|
||||
if: startsWith(matrix.build, 'gui') && runner.os != 'Linux'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue