-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
163 additions
and
3 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: Release Rust Crates | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
release-crates: | ||
name: Release Crates | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: taiki-e/install-action@just | ||
- uses: dtolnay/rust-toolchain@stable | ||
- name: Install cargo release | ||
run: cargo install cargo-release | ||
- name: Login to cargo | ||
run: cargo login $CARGO_REGISTRY_TOKEN | ||
env: | ||
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} | ||
- name: Release superchain-primitives crate | ||
run: just release-primitives | ||
continue-on-error: true | ||
- name: Release superchain-registry crate | ||
run: just release-registry | ||
continue-on-error: true | ||
- name: Release superchain crate | ||
run: just release-superchain | ||
continue-on-error: true |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,125 @@ | ||
name: Rust CI | ||
|
||
on: | ||
push: | ||
branches: [main] | ||
merge_group: | ||
pull_request: | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
|
||
jobs: | ||
cargo-tests: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 20 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
token: ${{ secrets.PAT_TOKEN }} | ||
- name: Install Rust stable toolchain | ||
uses: dtolnay/rust-toolchain@stable | ||
- uses: Swatinem/rust-cache@v2 | ||
with: | ||
cache-on-failure: true | ||
- uses: taiki-e/install-action@nextest | ||
- name: cargo test | ||
run: cargo nextest run --release --workspace --all --locked | ||
cargo-lint: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 20 | ||
name: lint | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
token: ${{ secrets.PAT_TOKEN }} | ||
- uses: taiki-e/install-action@just | ||
- uses: dtolnay/rust-toolchain@nightly | ||
with: | ||
components: rustfmt, clippy | ||
- uses: Swatinem/rust-cache@v2 | ||
with: | ||
cache-on-failure: true | ||
- name: Log into ghcr | ||
uses: docker/login-action@v3 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
- name: fmt + lint | ||
run: just lint | ||
- name: chown target | ||
run: | | ||
sudo chown -R $(id -u):$(id -g) ./target | ||
cargo-build-benches: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 20 | ||
name: build-benchmarks | ||
continue-on-error: true | ||
steps: | ||
- name: Checkout sources | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
token: ${{ secrets.PAT_TOKEN }} | ||
- uses: taiki-e/install-action@just | ||
- name: Install Rust stable toolchain | ||
uses: dtolnay/rust-toolchain@stable | ||
- uses: Swatinem/rust-cache@v2 | ||
with: | ||
cache-on-failure: true | ||
- name: build benches | ||
run: cargo bench --no-run --workspace --all | ||
- name: chown target | ||
run: | | ||
sudo chown -R $(id -u):$(id -g) ./target | ||
cargo-build: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 20 | ||
name: build | ||
continue-on-error: true | ||
steps: | ||
- name: Checkout sources | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
token: ${{ secrets.PAT_TOKEN }} | ||
- uses: taiki-e/install-action@just | ||
- name: Install Rust stable toolchain | ||
uses: dtolnay/rust-toolchain@stable | ||
- uses: Swatinem/rust-cache@v2 | ||
with: | ||
cache-on-failure: true | ||
- name: Log into ghcr | ||
uses: docker/login-action@v3 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
- name: build | ||
run: just build | ||
- name: chown target | ||
run: | | ||
sudo chown -R $(id -u):$(id -g) ./target | ||
cargo-doc: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 20 | ||
steps: | ||
- name: Checkout sources | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
token: ${{ secrets.PAT_TOKEN }} | ||
- uses: taiki-e/install-action@just | ||
- name: Install Rust stable toolchain | ||
uses: dtolnay/rust-toolchain@stable | ||
- uses: Swatinem/rust-cache@v2 | ||
with: | ||
cache-on-failure: true | ||
- name: doclint | ||
run: just lint-docs | ||
- name: doctest | ||
run: just test-docs | ||
|
This file contains 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