Skip to content

Commit 2f8d61e

Browse files
committed
[CI] Remove Ubuntu 20.04 based builds as Github no longer supports that image.
1 parent 43d1253 commit 2f8d61e

File tree

1 file changed

+0
-73
lines changed

1 file changed

+0
-73
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 73 deletions
Original file line numberDiff line numberDiff line change
@@ -124,41 +124,6 @@ jobs:
124124
- name: Pack
125125
run: ./csharp/pack.sh
126126

127-
cpp-gcc-2004-build:
128-
name: C++ GCC ${{ matrix.version }} (Ubuntu 20.04)
129-
runs-on: ubuntu-20.04
130-
timeout-minutes: 60
131-
strategy:
132-
fail-fast: false
133-
matrix:
134-
version: [ '6', '7', '8', '9', '10' ]
135-
env:
136-
CC: gcc-${{ matrix.version }}
137-
CXX: g++-${{ matrix.version }}
138-
steps:
139-
- name: Checkout code
140-
uses: actions/checkout@v4
141-
with:
142-
ref: ${{ github.sha }}
143-
- name: Install compiler
144-
run: |
145-
sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu/ bionic main universe"
146-
sudo apt-get install -y g++-${{ matrix.version }} libsparsehash-dev libidn11
147-
- name: Setup java to run Gradle script
148-
uses: actions/setup-java@v4
149-
with:
150-
distribution: 'zulu'
151-
java-version: ${{ env.JAVA_VERSION }}
152-
- name: Setup BUILD_JAVA_HOME & BUILD_JAVA_VERSION
153-
run: |
154-
java -Xinternalversion
155-
echo "BUILD_JAVA_HOME=${JAVA_HOME}" >> $GITHUB_ENV
156-
echo "BUILD_JAVA_VERSION=${{ env.JAVA_VERSION }}" >> $GITHUB_ENV
157-
- name: Setup Gradle
158-
uses: gradle/actions/setup-gradle@v4
159-
- name: Build
160-
run: ./cppbuild/cppbuild
161-
162127
cpp-gcc-2404-build:
163128
name: C++ GCC ${{ matrix.version }} (Ubuntu 24.04)
164129
runs-on: ubuntu-24.04
@@ -195,44 +160,6 @@ jobs:
195160
- name: Build
196161
run: ./cppbuild/cppbuild
197162

198-
cpp-clang-2004-build:
199-
name: C++ Clang ${{ matrix.version }} (Ubuntu 20.04)
200-
runs-on: ubuntu-20.04
201-
timeout-minutes: 60
202-
strategy:
203-
fail-fast: false
204-
matrix:
205-
version: [ '9', '10', '11', '12' ]
206-
env:
207-
CC: clang-${{ matrix.version }}
208-
CXX: clang++-${{ matrix.version }}
209-
steps:
210-
- name: Checkout code
211-
uses: actions/checkout@v4
212-
with:
213-
ref: ${{ github.sha }}
214-
- name: Install compiler
215-
run: |
216-
sudo mkdir -p /etc/apt/keyrings/
217-
curl https://apt.llvm.org/llvm-snapshot.gpg.key | sudo gpg --dearmor -o /etc/apt/keyrings/llvm-snapshot.gpg
218-
echo "deb [signed-by=/etc/apt/keyrings/llvm-snapshot.gpg] http://apt.llvm.org/focal/ llvm-toolchain-focal-${{ matrix.version }} main" | sudo tee /etc/apt/sources.list.d/llvm.list
219-
sudo apt-get update
220-
sudo apt-get install -y clang-${{ matrix.version }} libsparsehash-dev libidn11
221-
- name: Setup java to run Gradle script
222-
uses: actions/setup-java@v4
223-
with:
224-
distribution: 'zulu'
225-
java-version: ${{ env.JAVA_VERSION }}
226-
- name: Setup BUILD_JAVA_HOME & BUILD_JAVA_VERSION
227-
run: |
228-
java -Xinternalversion
229-
echo "BUILD_JAVA_HOME=${JAVA_HOME}" >> $GITHUB_ENV
230-
echo "BUILD_JAVA_VERSION=${{ env.JAVA_VERSION }}" >> $GITHUB_ENV
231-
- name: Setup Gradle
232-
uses: gradle/actions/setup-gradle@v4
233-
- name: Build
234-
run: ./cppbuild/cppbuild
235-
236163
cpp-clang-2404-build:
237164
name: C++ Clang ${{ matrix.version }} (Ubuntu 24.04)
238165
runs-on: ubuntu-24.04

0 commit comments

Comments
 (0)