Skip to content

Commit

Permalink
GitHub Actions] Drop the Ubuntu 18.04 CI passes, publish the Ubuntu 2…
Browse files Browse the repository at this point in the history
…2.04 artifact
  • Loading branch information
past-due committed Oct 13, 2023
1 parent 966c0c0 commit 6bfe80d
Showing 1 changed file with 2 additions and 21 deletions.
23 changes: 2 additions & 21 deletions .github/workflows/CI_ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,36 +28,21 @@ jobs:
matrix:
include:
# Builds with GCC (uploaded as artifacts, and published as release DEBs)
- name: "Ubuntu 18.04 [GCC]"
docker: "ubuntu-18.04"
arch: "amd64"
output-suffix: "ubuntu18.04"
compiler: gcc
publish_artifact: true
deploy_release: true
- name: "Ubuntu 20.04 [GCC]"
docker: "ubuntu-20.04"
arch: "amd64"
compiler: gcc
output-suffix: "ubuntu20.04"
publish_artifact: true
deploy_release: true
# Newer builds with GCC (not currently uploaded)
- name: "Ubuntu 22.04 [GCC]"
docker: "ubuntu-22.04"
arch: "amd64"
output-suffix: "ubuntu22.04"
compiler: gcc
publish_artifact: false
deploy_release: false
publish_artifact: true
deploy_release: true
# Builds with Clang (not uploaded)
- name: "Ubuntu 18.04 [Clang]"
docker: "ubuntu-18.04"
arch: "amd64"
output-suffix: "ubuntu18.04"
compiler: clang
publish_artifact: false
deploy_release: false
- name: "Ubuntu 20.04 [Clang]"
docker: "ubuntu-20.04"
arch: "amd64"
Expand Down Expand Up @@ -100,10 +85,6 @@ jobs:
- name: Init Git Submodules
working-directory: '${{ github.workspace }}/src'
run: git submodule update --init --recursive
- name: Pull latest base image
if: success() && (matrix.docker == 'ubuntu-18.04')
run: |
docker pull ubuntu:18.04
- name: Build the Docker image
working-directory: '${{ github.workspace }}/src'
run: |
Expand Down

0 comments on commit 6bfe80d

Please sign in to comment.