Skip to content

Commit 5305a89

Browse files
committed
Revert back to ubuntu-20.04
ubuntu-22.04 caused issues with the binaries, revert back to ubuntu-20.04. Signed-off-by: David Enyeart <enyeart@us.ibm.com> (cherry picked from commit e8c6102)
1 parent 399e6fe commit 5305a89

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
strategy:
2828
matrix:
2929
include:
30-
- image: ubuntu-22.04
30+
- image: ubuntu-20.04
3131
target: linux
3232
arch: amd64
3333
- image: macos-11
@@ -36,7 +36,7 @@ jobs:
3636
- image: windows-2022
3737
target: windows
3838
arch: amd64
39-
runs-on: ubuntu-22.04
39+
runs-on: ubuntu-20.04
4040
steps:
4141
- name: Install Go
4242
uses: actions/setup-go@v3
@@ -56,7 +56,7 @@ jobs:
5656
path: release/${{ matrix.target }}-${{ matrix.arch }}/hyperledger-fabric-${{ matrix.target }}-${{ matrix.arch }}-${{ inputs.release }}.tar.gz
5757
build-and-push-docker-images:
5858
name: Build and Push Fabric Docker Images
59-
runs-on: ubuntu-22.04
59+
runs-on: ubuntu-20.04
6060
steps:
6161
- name: Run APT Clean
6262
run: sudo apt clean
@@ -80,7 +80,7 @@ jobs:
8080
create-release:
8181
name: Create GitHub Release
8282
needs: [ build-binaries, build-and-push-docker-images ]
83-
runs-on: ubuntu-22.04
83+
runs-on: ubuntu-20.04
8484
permissions:
8585
contents: write
8686
steps:
@@ -95,4 +95,4 @@ jobs:
9595
artifacts: "*.tar.gz/*.tar.gz"
9696
bodyFile: release_notes/v${{ inputs.release }}.md
9797
tag: v${{ inputs.release }}
98-
token: ${{ secrets.GITHUB_TOKEN }}
98+
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/verify-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ env:
1818
jobs:
1919
basic-checks:
2020
name: Basic Checks
21-
runs-on: ubuntu-22.04
21+
runs-on: ubuntu-20.04
2222
steps:
2323
- uses: actions/setup-go@v3
2424
name: Install Go
@@ -31,7 +31,7 @@ jobs:
3131
unit-tests:
3232
name: Unit Tests
3333
needs: basic-checks
34-
runs-on: ubuntu-22.04
34+
runs-on: ubuntu-20.04
3535
steps:
3636
- uses: actions/setup-go@v3
3737
name: Install Go
@@ -49,7 +49,7 @@ jobs:
4949
strategy:
5050
matrix:
5151
INTEGRATION_TEST_SUITE: ["raft","pvtdata","ledger","lifecycle","e2e","discovery gossip devmode pluggable","gateway idemix pkcs11 configtx configtxlator","sbe nwo msp"]
52-
runs-on: ubuntu-22.04
52+
runs-on: ubuntu-20.04
5353
steps:
5454
- uses: actions/setup-go@v3
5555
name: Install Go

0 commit comments

Comments
 (0)