mirror of
https://github.com/eosswedenorg/antelope-keygen
synced 2026-06-17 03:50:03 +02:00
Github Actions: skip building for Ubuntu 16.04
First, 16.04 only supports libssl 1.0 (officially) that links fine but will not find the library at runtime. Second, 16.04 is old (LTS is still valid tho). If requested, we could consider supporting it but no point going through the hassle if it has no users.
This commit is contained in:
parent
6f1359444a
commit
dce6f58607
2 changed files with 2 additions and 3 deletions
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
|
@ -11,7 +11,7 @@ jobs:
|
|||
compile:
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ ubuntu-16.04, ubuntu-18.04, macos-latest, windows-latest ]
|
||||
os: [ ubuntu-18.04, macos-latest, windows-latest ]
|
||||
build: [ cli, cli-mt, cli-ansi, cli-ansi-mt, gui, gui-mt ]
|
||||
include:
|
||||
- build: cli
|
||||
|
|
|
|||
3
.github/workflows/package.yml
vendored
3
.github/workflows/package.yml
vendored
|
|
@ -9,7 +9,6 @@ jobs:
|
|||
ubuntu:
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ ubuntu-16.04, ubuntu-18.04 ]
|
||||
component: [ cli, gui ]
|
||||
include:
|
||||
- component: cli
|
||||
|
|
@ -17,7 +16,7 @@ jobs:
|
|||
- component: gui
|
||||
build-opts: --no-cli --gui -t Release --pkg-type deb
|
||||
name: ${{matrix.os}} (${{matrix.component}})
|
||||
runs-on: ${{matrix.os}}
|
||||
runs-on: ubuntu-18.04
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue