distributable: # FIXME: foundry has releases named "Nightly (YYYY-MM-DD)" # but their tags are "nightly-". url: https://github.com/foundry-rs/foundry/archive/refs/tags/nightly-54b369564937f5f5d4f2525622e8b9808b1645f6.tar.gz strip-components: 1 versions: # FIXME: we should use this, which will get us calver, # but the tags are just "nightly-". # github: foundry-rs/foundry/releases # strip: # - /^Nightly \(/ # - /\)$/ - 2023.12.07 dependencies: git-scm.org: ^2 build: dependencies: rust-lang.org: ^1.74 # edition: 2021 rust-lang.org/cargo: "*" script: # install Forge - cargo install --path ./crates/forge $ARGS # install Cast - cargo install --path ./crates/cast $ARGS # install Anvil - cargo install --path ./crates/anvil $ARGS # install Chisel - cargo install --path ./crates/chisel $ARGS env: ARGS: - --root "{{prefix}}" - --profile local - --force - --locked provides: - bin/forge - bin/anvil - bin/cast - bin/chisel test: script: # forge uses git which has minimum config requirements. - | git init git config user.email "hello@tea.xyz" git config user.name "teapot" # And forge init requires a clean git repo. - | git add -A git commit -m "Initial commit" - forge init hello_foundry - run: forge build && forge test working-directory: hello_foundry