fix: remove problematic fn env_fulfillment_strategy #619
Workflow file for this run
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: Kurtosis Devnet | |
| on: | |
| push: | |
| branches: [master] | |
| merge_group: | |
| pull_request: | |
| env: | |
| MISE_VERSION: 2024.12.14 | |
| jobs: | |
| kurtosis_devnet: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: jdx/mise-action@v2 | |
| with: | |
| version: ${{ env.MISE_VERSION }} | |
| experimental: true | |
| - run: just run-kurtosis-devnet-with-eigenlabs-package | |
| # We build the client here because `just run-client-native-against-devnet` | |
| # first polls op-geth for a first finalized block, which takes a few minutes, | |
| # and only after that runs `cargo run` which then builds the client, and takes another | |
| # few minutes. Better to build here while waiting for first l2 block to finalize. | |
| - run: RISC0_SKIP_BUILD=1 SP1_SKIP_PROGRAM_BUILD=true just build-native-host | |
| # We run this explicitly here even though its run implicitly as a dependency of `run-client-native-against-devnet` | |
| # just so that we can see the breakdown timing requirements for each step. | |
| - run: just _kurtosis_wait_for_first_l2_finalized_block | |
| - run: RISC0_SKIP_BUILD=1 SP1_SKIP_PROGRAM_BUILD=true just run-client-against-devnet 'native' | |
| # TODO: we should also run the asterisc/cannon client once it works |