1
0
Fork 0
mirror of https://github.com/eosswedenorg/libantelope synced 2026-06-16 03:34:56 +02:00

Github Actions: skip building/package for Ubuntu 16.04

16.04 only supports libssl 1.0 (officially).
If requested, we could consider supporting it but no point going through the hassle if it has no users.
This commit is contained in:
Henrik Hautakoski 2020-04-26 13:10:32 +02:00
parent a3aad06ba7
commit 010cd3a370
2 changed files with 3 additions and 6 deletions

View file

@ -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 ]
name: ${{matrix.os}}
runs-on: ${{matrix.os}}

View file

@ -7,11 +7,8 @@ on:
jobs:
# Debian package for ubuntu.
ubuntu:
strategy:
matrix:
os: [ ubuntu-16.04, ubuntu-18.04 ]
name: ${{matrix.os}}
runs-on: ${{matrix.os}}
name: Ubuntu 18.04
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v1