Skip to content

Commit 3b53a30

Browse files
committed
CI: remove ubuntu-20.04
1 parent a44cb64 commit 3b53a30

File tree

3 files changed

+4
-16
lines changed

3 files changed

+4
-16
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,7 @@ env:
1111

1212
jobs:
1313
release:
14-
strategy:
15-
matrix:
16-
os: [ubuntu-20.04, ubuntu-22.04]
17-
runs-on: ["${{ matrix.os }}"]
14+
runs-on: ubuntu-22.04
1815
steps:
1916
- uses: actions/checkout@v2
2017

@@ -58,12 +55,6 @@ jobs:
5855
- name: Build release tarball
5956
run: ./ci/create-tarball.sh
6057

61-
- name: Rename binaries for ubuntu22 release
62-
if: matrix.os == 'ubuntu-22.04'
63-
run: |
64-
mv solana-accountsdb-plugin-kafka-release-x86_64-unknown-linux-gnu.tar.bz2 solana-accountsdb-plugin-kafka-release22-x86_64-unknown-linux-gnu.tar.bz2
65-
mv solana-accountsdb-plugin-kafka-release-x86_64-unknown-linux-gnu.yml solana-accountsdb-plugin-kafka-release22-x86_64-unknown-linux-gnu.yml
66-
6758
- name: Release
6859
uses: softprops/action-gh-release@v1
6960
if: startsWith(github.ref, 'refs/tags/')

.github/workflows/test.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,7 @@ env:
1010

1111
jobs:
1212
test:
13-
strategy:
14-
matrix:
15-
os: [ubuntu-20.04, ubuntu-22.04]
16-
runs-on: ["${{ matrix.os }}"]
13+
runs-on: ubuntu-22.04
1714
steps:
1815
- uses: actions/checkout@v2
1916

@@ -50,7 +47,7 @@ jobs:
5047
path: |
5148
~/.cargo/registry
5249
~/.cargo/git
53-
key: ${{ matrix.os }}-cargo-build-${{ hashFiles('**/Cargo.lock', 'rust-toolchain.toml') }}-${{ env.RUST_STABLE }}
50+
key: ${{ runner.os }}-cargo-build-${{ hashFiles('**/Cargo.lock', 'rust-toolchain.toml') }}-${{ env.RUST_STABLE }}
5451

5552
- name: cargo fmt
5653
uses: actions-rs/cargo@v1

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Find binary releases [here](https://github.com/Blockdaemon/solana-accountsdb-plu
1414

1515
You will need version 3.15 or later of the protobuf compiler `protoc` installed, since it is required for the `--experimental_allow_proto3_optional` option.
1616

17-
Note that as of this writing, both ubuntu 20.04 and 22.04 have obsolete versions of `protoc`.
17+
Note that as of this writing, ubuntu 22.04 still has an obsolete of `protoc`.
1818

1919
For ubuntu, CI imports one from debian:
2020

0 commit comments

Comments
 (0)