mirror of
https://github.com/logos-blockchain/logos-execution-zone.git
synced 2026-08-26 11:51:13 +00:00
feat: add artifacts of program_methods and remove no_docker feature
This commit is contained in:
@@ -93,7 +93,7 @@ jobs:
|
||||
- name: Unit tests
|
||||
env:
|
||||
RISC0_DEV_MODE: "1"
|
||||
run: cargo test --workspace --features no_docker
|
||||
run: cargo test --workspace
|
||||
|
||||
- name: Test valid proof
|
||||
env:
|
||||
@@ -108,3 +108,27 @@ jobs:
|
||||
RISC0_DEV_MODE: "1"
|
||||
run: cargo run --bin integration-tests -- ./integration-tests/configs/debug/ all
|
||||
|
||||
artifacts:
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 60
|
||||
|
||||
name: artifacts
|
||||
steps:
|
||||
- uses: actions/checkout@v5
|
||||
|
||||
- uses: ./.github/actions/install-risc0
|
||||
|
||||
- name: Install just
|
||||
run: cargo install just
|
||||
|
||||
- name: Build artifacts
|
||||
run: just build-artifacts
|
||||
|
||||
- name: Check if artifacts match repository
|
||||
run: |
|
||||
if ! git diff --exit-code artifacts/; then
|
||||
echo "❌ Artifacts in the repository are out of date!"
|
||||
echo "Please run 'just build-artifacts' and commit the changes."
|
||||
exit 1
|
||||
fi
|
||||
echo "✅ Artifacts are up to date"
|
||||
|
||||
Reference in New Issue
Block a user