Skip to content

Commit

Permalink
[ci] upgrade github actions and merge artifacts (#4774)
Browse files Browse the repository at this point in the history
  • Loading branch information
sophoah authored Oct 16, 2024
1 parent 2e824e1 commit 8ba758a
Show file tree
Hide file tree
Showing 3 changed files with 61 additions and 43 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-docker-proto-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ jobs:

steps:
- name: Checkout harmony core code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: harmony
ref: ${{ github.ref }}
fetch-depth: 0

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: Login to DockerHub
uses: docker/login-action@v2
Expand All @@ -25,7 +25,7 @@ jobs:
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Build and push
uses: docker/build-push-action@v3
uses: docker/build-push-action@v6
with:
context: ./harmony/api/service/legacysync/downloader
file: ./harmony/api/service/legacysync/downloader/Proto.Dockerfile
Expand Down
49 changes: 29 additions & 20 deletions .github/workflows/ci-tag.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

steps:
- name: Checkout harmony core code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: harmony
ref: ${{ github.event.inputs.tag }}
Expand All @@ -29,9 +29,9 @@ jobs:
VERSION=$(git tag -l --sort=-v:refname | head -n 1)
if git rev-parse $VERSION^{tag} -- &>/dev/null
then
echo "::set-output name=tag_annotated::true"
echo "tag_annotated=true" >> $GITHUB_OUTPUT
else
echo "::set-output name=tag_annotated::false"
echo "tag_annotated=false" >> $GITHUB_OUTPUT
fi
working-directory: harmony

Expand All @@ -47,32 +47,32 @@ jobs:
steps:
- name: Import GPG key
if: join(matrix.os, '-') != 'self-hosted-linux-ARM64'
uses: crazy-max/ghaction-import-gpg@v5
uses: crazy-max/ghaction-import-gpg@v6
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.GPG_PRIVATE_KEY_PASS }}

- name: Checkout dependence repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: harmony-one/mcl
path: mcl

- name: Checkout dependence repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: harmony-one/bls
path: bls

- name: Checkout harmony core code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: harmony
ref: ${{ github.event.inputs.tag }}
fetch-depth: 0

- name: Set up Go go.mod
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version-file: 'harmony/go.mod'

Expand Down Expand Up @@ -117,21 +117,30 @@ jobs:
working-directory: harmony

- name: Upload artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: harmony
name: harmony-${{ matrix.os }}
path: harmony/bin/*
retention-days: 1

merge_artifacts:
runs-on: ubuntu-22.04
needs: build
steps:
- name: Merge Artifacts
uses: actions/upload-artifact/merge@v4
with:
name: harmony

docker-build:
name: Build and push harmony docker image
needs: [check, build]
needs: [check, build, merge_artifacts]
runs-on: ubuntu-22.04
if: needs.check.outputs.tag_annotated == 'true'

steps:
- name: Checkout harmony core code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: harmony
ref: ${{ github.event.inputs.tag }}
Expand All @@ -146,7 +155,7 @@ jobs:
working-directory: harmony

- name: Download artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: harmony

Expand All @@ -156,16 +165,16 @@ jobs:
working-directory: harmony

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: Login to DockerHub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Build and push
uses: docker/build-push-action@v3
uses: docker/build-push-action@v6
with:
context: ./harmony/scripts/docker
file: ./harmony/scripts/docker/Dockerfile
Expand All @@ -178,19 +187,19 @@ jobs:
release-page:
name: Sign binary and create and publish release page
needs: [check, build]
needs: [check, build, merge_artifacts]
runs-on: ubuntu-22.04
if: needs.check.outputs.tag_annotated == 'true'

steps:
- name: Import GPG key
uses: crazy-max/ghaction-import-gpg@v5
uses: crazy-max/ghaction-import-gpg@v6
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.GPG_PRIVATE_KEY_PASS }}

- name: Checkout harmony core code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: harmony
ref: ${{ github.event.inputs.tag }}
Expand All @@ -207,7 +216,7 @@ jobs:
working-directory: harmony

- name: Download artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: harmony

Expand Down
49 changes: 29 additions & 20 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

steps:
- name: Checkout harmony core code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: harmony
ref: ${{ github.ref }}
Expand All @@ -27,9 +27,9 @@ jobs:
VERSION=$(git tag -l --sort=-v:refname | head -n 1)
if git rev-parse $VERSION^{tag} -- &>/dev/null
then
echo "::set-output name=tag_annotated::true"
echo "tag_annotated=true" >> $GITHUB_OUTPUT
else
echo "::set-output name=tag_annotated::false"
echo "tag_annotated=false" >> $GITHUB_OUTPUT
fi
working-directory: harmony

Expand All @@ -45,32 +45,32 @@ jobs:
steps:
- name: Import GPG key
if: join(matrix.os, '-') != 'self-hosted-linux-ARM64'
uses: crazy-max/ghaction-import-gpg@v5
uses: crazy-max/ghaction-import-gpg@v6
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.GPG_PRIVATE_KEY_PASS }}

- name: Checkout dependence repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: harmony-one/mcl
path: mcl

- name: Checkout dependence repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: harmony-one/bls
path: bls

- name: Checkout harmony core code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: harmony
ref: ${{ github.ref }}
fetch-depth: 0

- name: Set up Go with go.mod
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version-file: 'harmony/go.mod'

Expand Down Expand Up @@ -119,21 +119,30 @@ jobs:
working-directory: harmony

- name: Upload artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: harmony
name: harmony-${{ matrix.os }}
path: harmony/bin/*
retention-days: 1

merge_artifacts:
runs-on: ubuntu-22.04
needs: build
steps:
- name: Merge Artifacts
uses: actions/upload-artifact/merge@v4
with:
name: harmony

docker-build:
name: Build and push harmony docker image
needs: [check, build]
needs: [check, build, merge_artifacts]
runs-on: ubuntu-22.04
if: needs.check.outputs.tag_annotated == 'true'

steps:
- name: Checkout harmony core code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: harmony
ref: ${{ github.ref }}
Expand All @@ -148,7 +157,7 @@ jobs:
working-directory: harmony

- name: Download artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: harmony

Expand All @@ -158,16 +167,16 @@ jobs:
working-directory: harmony

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: Login to DockerHub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Build and push
uses: docker/build-push-action@v3
uses: docker/build-push-action@v6
with:
context: ./harmony/scripts/docker
file: ./harmony/scripts/docker/Dockerfile
Expand All @@ -180,19 +189,19 @@ jobs:
release-page:
name: Sign binary and create and publish release page
needs: [check, build]
needs: [check, build, merge_artifacts]
runs-on: ubuntu-22.04
if: needs.check.outputs.tag_annotated == 'true'

steps:
- name: Import GPG key
uses: crazy-max/ghaction-import-gpg@v5
uses: crazy-max/ghaction-import-gpg@v6
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.GPG_PRIVATE_KEY_PASS }}

- name: Checkout harmony core code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: harmony
ref: ${{ github.ref }}
Expand All @@ -209,7 +218,7 @@ jobs:
working-directory: harmony

- name: Download artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: harmony

Expand Down

0 comments on commit 8ba758a

Please sign in to comment.