[debug] skip to SO step
Some checks failed
Test / Run unit tests (pull_request) Has been skipped
Test / Run compliance tests (pull_request) Has been skipped
Test / Run integration tests (pull_request) Failing after 46s

This commit is contained in:
Roy Crihfield 2024-03-28 22:00:55 +08:00
parent addf422537
commit c59c33d012

View File

@ -43,26 +43,26 @@ jobs:
name: Run integration tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
path: ./plugeth-statediff
- uses: actions/checkout@v3
with:
repository: cerc-io/plugeth
ref: 4556585a56ee3788942dea19751d5f9f14f5cfa1 # TODO update after PR
path: ./plugeth
- name: Run dockerd
run: dockerd -H $DOCKER_HOST --userland-proxy=false &
# These images need access tokens configured
- name: Build docker image
env:
TOKEN: ${{ secrets.CICD_REPO_TOKEN }}
run: |
[[ -n "$TOKEN" ]]
docker build ./plugeth-statediff -t cerc/plugeth-statediff:local \
--build-arg GIT_VDBTO_TOKEN="$TOKEN"
docker build ./plugeth -t cerc/plugeth:local \
--build-arg GIT_VDBTO_TOKEN="$TOKEN"
# - uses: actions/checkout@v3
# with:
# path: ./plugeth-statediff
# - uses: actions/checkout@v3
# with:
# repository: cerc-io/plugeth
# ref: 4556585a56ee3788942dea19751d5f9f14f5cfa1 # TODO update after PR
# path: ./plugeth
# - name: Run dockerd
# run: dockerd -H $DOCKER_HOST --userland-proxy=false &
# # These images need access tokens configured
# - name: Build docker image
# env:
# TOKEN: ${{ secrets.CICD_REPO_TOKEN }}
# run: |
# [[ -n "$TOKEN" ]]
# docker build ./plugeth-statediff -t cerc/plugeth-statediff:local \
# --build-arg GIT_VDBTO_TOKEN="$TOKEN"
# docker build ./plugeth -t cerc/plugeth:local \
# --build-arg GIT_VDBTO_TOKEN="$TOKEN"
- name: "Checkout stack-orchestrator"
uses: actions/checkout@v3