mirror of
https://github.com/Xaymar/obs-StreamFX
synced 2024-11-10 22:05:06 +00:00
ci: Remove automatic build support for Ubuntu 18.04
The majority of users should have already switched or upgraded to Ubuntu 20.04 at this point, so there is no point in building further Ubuntu 18.04 versions. This saves us some CI slots, and also reduces the number of target systems to actually support.
This commit is contained in:
parent
851e1e8939
commit
188e58bbda
1 changed files with 2 additions and 17 deletions
19
.github/workflows/main.yml
vendored
19
.github/workflows/main.yml
vendored
|
@ -92,24 +92,9 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: true
|
fail-fast: true
|
||||||
matrix:
|
matrix:
|
||||||
ubuntu: [ bionic, focal ]
|
ubuntu: [ focal ]
|
||||||
compiler: [ gcc, clang ]
|
compiler: [ gcc, clang ]
|
||||||
include:
|
include:
|
||||||
- ubuntu: bionic
|
|
||||||
compiler: gcc
|
|
||||||
compiler-cxx: g++
|
|
||||||
runner: ubuntu-18.04
|
|
||||||
packages: gcc-8 g++8
|
|
||||||
extra_command: sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-8 800 --slave /usr/bin/g++ g++ /usr/bin/g++-8
|
|
||||||
id: ubuntu-18.04
|
|
||||||
- ubuntu: bionic
|
|
||||||
compiler: clang
|
|
||||||
compiler-cxx: clang++
|
|
||||||
compiler-version: 8
|
|
||||||
runner: ubuntu-18.04
|
|
||||||
packages: clang-8 clang-format-8 clang-tidy-8
|
|
||||||
extra_command: ""
|
|
||||||
id: ubuntu-18.04-clang
|
|
||||||
- ubuntu: focal
|
- ubuntu: focal
|
||||||
compiler: gcc
|
compiler: gcc
|
||||||
compiler-cxx: g++
|
compiler-cxx: g++
|
||||||
|
@ -180,4 +165,4 @@ jobs:
|
||||||
uses: actions/upload-artifact@v1
|
uses: actions/upload-artifact@v1
|
||||||
with:
|
with:
|
||||||
name: ${{ matrix.id }}
|
name: ${{ matrix.id }}
|
||||||
path: build/package
|
path: build/package
|
||||||
|
|
Loading…
Reference in a new issue