Skip to content

Commit

Permalink
Revert back to ubuntu-20.04
Browse files Browse the repository at this point in the history
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)
  • Loading branch information
denyeart committed Oct 26, 2022
1 parent 506ecdf commit df9c661
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
strategy:
matrix:
include:
- image: ubuntu-22.04
- image: ubuntu-20.04
target: linux
arch: amd64
- image: macos-11
Expand All @@ -36,7 +36,7 @@ jobs:
- image: windows-2022
target: windows
arch: amd64
runs-on: ubuntu-22.04
runs-on: ubuntu-20.04
steps:
- name: Install Go
uses: actions/setup-go@v3
Expand All @@ -56,7 +56,7 @@ jobs:
path: release/${{ matrix.target }}-${{ matrix.arch }}/hyperledger-fabric-${{ matrix.target }}-${{ matrix.arch }}-${{ inputs.release }}.tar.gz
build-and-push-docker-images:
name: Build and Push Fabric Docker Images
runs-on: ubuntu-22.04
runs-on: ubuntu-20.04
steps:
- name: Run APT Clean
run: sudo apt clean
Expand All @@ -80,7 +80,7 @@ jobs:
create-release:
name: Create GitHub Release
needs: [ build-binaries, build-and-push-docker-images ]
runs-on: ubuntu-22.04
runs-on: ubuntu-20.04
permissions:
contents: write
steps:
Expand All @@ -95,4 +95,4 @@ jobs:
artifacts: "*.tar.gz/*.tar.gz"
bodyFile: release_notes/v${{ inputs.release }}.md
tag: v${{ inputs.release }}
token: ${{ secrets.GITHUB_TOKEN }}
token: ${{ secrets.GITHUB_TOKEN }}
6 changes: 3 additions & 3 deletions .github/workflows/verify-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ env:
jobs:
basic-checks:
name: Basic Checks
runs-on: ubuntu-22.04
runs-on: ubuntu-20.04
steps:
- uses: actions/setup-go@v3
name: Install Go
Expand All @@ -31,7 +31,7 @@ jobs:
unit-tests:
name: Unit Tests
needs: basic-checks
runs-on: ubuntu-22.04
runs-on: ubuntu-20.04
steps:
- uses: actions/setup-go@v3
name: Install Go
Expand All @@ -49,7 +49,7 @@ jobs:
strategy:
matrix:
INTEGRATION_TEST_SUITE: ["raft","pvtdata","ledger","lifecycle","e2e","discovery gossip devmode pluggable","gateway idemix pkcs11 configtx configtxlator","sbe nwo msp"]
runs-on: ubuntu-22.04
runs-on: ubuntu-20.04
steps:
- uses: actions/setup-go@v3
name: Install Go
Expand Down

0 comments on commit df9c661

Please sign in to comment.