-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
commit 7dfc298 Author: Daniel Wang <dan@taiko.xyz> Date: Tue Dec 12 16:46:17 2023 +0800 add links in solidity files commit 0ece27d Author: Korbinian <KorbinianK@users.noreply.github.com> Date: Mon Dec 11 21:59:02 2023 +0100 chore(bridge-ui-v2): update and fix typescript-linting (#15372) commit 9ef2dd2 Author: Daniel Wang <99078276+dantaik@users.noreply.github.com> Date: Mon Dec 11 19:47:30 2023 +0800 refactor(protocol): use Bridge to send cross-chain owned contract transactions (#15368) Co-authored-by: David <david@taiko.xyz> commit 5e06cd9 Author: xiaodino <ruby@taiko.xyz> Date: Mon Dec 11 00:35:00 2023 -0800 feat(bridge-ui-v2): Update encoded signal proof in BridgeProver.ts (#15348) Co-authored-by: David <david@taiko.xyz> Co-authored-by: Daniel Wang <99078276+dantaik@users.noreply.github.com> commit 8edcb3c Author: Daniel Wang <99078276+dantaik@users.noreply.github.com> Date: Mon Dec 11 15:17:52 2023 +0800 chore(protocol): move eip1559_util.py to script/ (#15367) commit 161f4c6 Author: Daniel Wang <99078276+dantaik@users.noreply.github.com> Date: Fri Dec 8 16:47:54 2023 +0800 feat(protocol): Use taikoL2's address as the treasury address in circuits (#15350) Co-authored-by: David <david@taiko.xyz> commit d50b276 Author: David <david@taiko.xyz> Date: Fri Dec 8 13:51:32 2023 +0800 feat(protocol): grant `securityCouncil` the `PROPOSER` role (#15355) commit 75b2ef9 Author: jeff <113397187+cyberhorsey@users.noreply.github.com> Date: Thu Dec 7 19:02:42 2023 -0800 feat(guardian-prover-health-check): ui + api (#15324) commit 06ce873 Author: Daniel Wang <99078276+dantaik@users.noreply.github.com> Date: Thu Dec 7 16:01:42 2023 +0800 chore(protocol): apply fixes based on OZ's inspector reports (#15320) commit 8fc51b4 Author: CeciliaZ030 <45245961+CeciliaZ030@users.noreply.github.com> Date: Thu Dec 7 05:32:31 2023 +0300 fix(protocol): Non-recursive abi.encode for Zk Verifier (#15344)
- Loading branch information
1 parent
1bdb5e8
commit 5fa8359
Showing
183 changed files
with
9,599 additions
and
2,897 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,101 @@ | ||
name: Guardianproverhealthcheck | ||
name: guardian-prover-health-check | ||
|
||
on: | ||
push: | ||
branches: [main] | ||
paths: | ||
- "packages/guardian-prover-health-check/**" | ||
pull_request: | ||
paths: | ||
- "packages/guardian-prover-health-check/**" | ||
|
||
jobs: | ||
build: | ||
lint: | ||
name: lint | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Cancel previous runs | ||
- uses: actions/setup-go@v3 | ||
with: | ||
go-version: 1.21.0 | ||
- uses: actions/checkout@v3 | ||
- name: golangci-lint | ||
uses: golangci/golangci-lint-action@v3 | ||
with: | ||
# Optional: version of golangci-lint to use in form of v1.2 or v1.2.3 or `latest` to use the latest version | ||
version: latest | ||
|
||
# Optional: working directory, useful for monorepos | ||
working-directory: ./packages/guardian-prover-health-check | ||
args: --config=.golangci.yml --timeout=4m | ||
|
||
test: | ||
runs-on: ubuntu-latest | ||
needs: lint | ||
steps: | ||
- name: Cancel Previous Runs | ||
uses: styfle/cancel-workflow-action@0.11.0 | ||
with: | ||
access_token: ${{ github.token }} | ||
|
||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-go@v3 | ||
with: | ||
go-version: "1.21.0" | ||
|
||
- name: guardian-prover-health-check - Unit Tests | ||
working-directory: ./packages/guardian-prover-health-check | ||
run: go test `go list ./... | grep -v ./contracts | grep -v ./mock | grep -v ./cmd` -coverprofile=coverage.txt -covermode=atomic | ||
|
||
- name: guardian-prover-health-check - Upload coverage to Codecov | ||
uses: codecov/codecov-action@v3 | ||
with: | ||
files: ./packages/guardian-prover-health-check/coverage.txt | ||
flags: guardian-prover-health-check | ||
|
||
push-docker-image: | ||
# only push docker image on PR merge to main | ||
if: ${{ github.event }} == 'push' | ||
name: Build and push docker image | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
ref: ${{ github.ref }} | ||
|
||
- name: Login to GCR | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: gcr.io | ||
username: _json_key | ||
password: ${{ secrets.GCR_JSON_KEY }} | ||
|
||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v1 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v1 | ||
|
||
- name: Docker meta | ||
id: meta | ||
uses: docker/metadata-action@v4 | ||
with: | ||
images: | | ||
gcr.io/evmchain/guardian-prover-health-check | ||
tags: | | ||
type=ref,event=branch | ||
type=ref,event=pr | ||
type=ref,event=tag | ||
type=sha | ||
- name: Build and push | ||
uses: docker/build-push-action@v2 | ||
with: | ||
submodules: recursive | ||
platforms: linux/amd64 | ||
push: true | ||
context: . | ||
tags: ${{ steps.meta.outputs.tags }} | ||
labels: ${{ steps.meta.outputs.labels }} | ||
build-args: | | ||
PACKAGE=guardian-prover-health-check |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.