Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add verify modules for ci #3758

Draft
wants to merge 3 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/build_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@ jobs:
command: build
args: --all
- uses: taiki-e/install-action@nextest
- name: verify modules
run: |
cp ./target/debug/starcoin_db_exporter .
bash ./scripts/verify_modules.sh main
- name: test
# run: bash ./scripts/auto_rerun_test.sh
# --test-threads 10, proper test concurrency level, balance failure rate and test speed
Expand Down
1 change: 1 addition & 0 deletions docker/ci/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ FROM summerwind/actions-runner:v2.283.3-ubuntu-20.04-b01e193 as actions-runner
WORKDIR /starcoin
COPY rust-toolchain /starcoin/rust-toolchain
COPY scripts/dev_setup.sh /starcoin/scripts/dev_setup.sh
COPY scripts/verify_modules.sh /starcoin/scripts/verify_modules.sh

RUN /starcoin/scripts/dev_setup.sh -b -t -y -o -p && \
sudo apt-get clean && \
Expand Down
2 changes: 1 addition & 1 deletion kube/manifest/runner/runner.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ spec:
spec:
nodeSelector:
node-pool: ci-pool-200g
image: starcoin/starcoin-builder:sha-cbd4ad4
image: starcoin/starcoin-builder:sha-cbd4ad4 # TODO update new runner image
repository: starcoinorg/starcoin
ephemeral: true
tolerations:
Expand Down