Skip to content
Closed
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
13 changes: 13 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,19 @@ jobs:
push: false
archive: false

# ---------------------------------------------------------------------------
# arcup: shell test suite for the installer (no network, no toolchain, seconds to run)
# ---------------------------------------------------------------------------

arcup-test:
name: arcup Shell Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3

- name: Run arcup test suite
run: bash arcup/test_arcup.sh

# ---------------------------------------------------------------------------
# Solidity Contracts: lint (fast) -> build -> test
# ---------------------------------------------------------------------------
Expand Down
7 changes: 6 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ test-it: up ## Run integration tests
cargo nextest run $(UNIT_TEST_ARGS) --features integration

.PHONY: test-all
test-all: test-it test-unit-contract ## Run all tests
test-all: test-it test-unit-contract test-arcup ## Run all tests
@echo running all tests...
make smoke LAUNCH_ARGS="--frozen --healthy-retry=130"

Expand All @@ -159,6 +159,11 @@ cov-report: cov-unit ## Generate the coverage report
cov-show: cov-report ## Generate coverage report and open in browser
open target/llvm-cov/html/index.html

.PHONY: test-arcup
test-arcup: ## Run the arcup installer shell test suite
@echo running arcup shell tests...
bash arcup/test_arcup.sh

.PHONY: test-unit-contract
test-unit-contract: check-foundry ## Run contract unit tests with coverage
@echo "Running contract tests..."
Expand Down