Devnet network tests #61
This file contains hidden or 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
| name: Devnet network tests | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| # Run nightly at 0300 | |
| - cron: "0 3 * * *" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| # This path is a workaround because the runner does not have perms to upload files anywhere else | |
| STATE_S3_BASE_PATH: s3://aztec-ci-artifacts/build-cache | |
| STATE_S3_KEY: build-cache/devnet-nightly-tests-state.json | |
| AZTEC_VERSION: alpha-testnet | |
| NODE_URL: http://34.169.170.55:8080 | |
| L1_URL: http://34.169.72.63:8545 | |
| FAUCET_URL: http://34.169.129.31:8086 | |
| jobs: | |
| cli-wallet: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Configure AWS credentials | |
| uses: aws-actions/configure-aws-credentials@6a64f289c4a4b67a1e2c44cc4bd9d6f7bc59b156 | |
| with: | |
| aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
| aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
| aws-region: eu-west-2 | |
| - name: Checkout smoke tests (note that this is not pinned to a version, the CLI wallet installed is though) | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
| with: | |
| sparse-checkout: | | |
| spartan/devnet-smoke-tests | |
| - name: Run smoke tests | |
| run: | | |
| ./spartan/devnet-smoke-tests/main.sh |