-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tzahi/Merge main-v0.13.2 into main (#153)
* fix: global file changes trigger specific package CIs (#77) Signed-off-by: Dori Medini <[email protected]> * chore(ci): allow warning during cargo doc (#127) * chore: fix some clippy doc issues (#122) * chore(ci): fix package selection (#123) * chore(ci): add triggers to papyrus ci (#121) * ci: add triggers for papyrus CI (#135) * chore(ci): fix merge paths CI (#116) Signed-off-by: Dori Medini <[email protected]> * refactor: move test files to dedicated directory (#105) * chore: move (workspace) doc test to main (workspace) CI (#106) Signed-off-by: Dori Medini <[email protected]> * Merge remote-tracking branch 'origin/main-v0.13.2' into tzahi/merge-main-v0.13.2-into-main * No conflicts in main-v0.13.2 -> main merge, this commit is for any change needed to pass the CI. Co-Authored-By: dorimedini-starkware <[email protected]> Co-Authored-By: dan-starkware <[email protected]> Co-Authored-By: aner-starkware <[email protected]>
- Loading branch information
1 parent
5e01e6d
commit a65d3f9
Showing
15 changed files
with
83 additions
and
46 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
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 |
---|---|---|
|
@@ -77,6 +77,19 @@ jobs: | |
|
||
- run: scripts/clippy.sh | ||
|
||
doc: | ||
runs-on: ubuntu-latest | ||
# env: | ||
# RUSTDOCFLAGS: "-D warnings" | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@stable | ||
- uses: Swatinem/rust-cache@v2 | ||
- uses: Noelware/[email protected] | ||
with: | ||
version: ${{env.PROTOC_VERSION}} | ||
- run: cargo doc --workspace -r --document-private-items --no-deps | ||
|
||
run-tests: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
|
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
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 |
---|---|---|
|
@@ -4,7 +4,14 @@ on: | |
push: | ||
branches: [main] | ||
paths: | ||
- '.github/workflows/papyrus_ci.yml' | ||
- 'Dockerfile' | ||
- 'papyrus_utilities.Dockerfile' | ||
- 'Cargo.toml' | ||
- 'Cargo.lock' | ||
- 'crates/papyrus**/**' | ||
- 'crates/sequencing/**' | ||
- 'crates/starknet_client/**' | ||
|
||
pull_request: | ||
types: | ||
|
@@ -14,7 +21,14 @@ on: | |
- auto_merge_enabled | ||
- edited # for when the PR title is edited | ||
paths: | ||
- '.github/workflows/papyrus_ci.yml' | ||
- 'Dockerfile' | ||
- 'papyrus_utilities.Dockerfile' | ||
- 'Cargo.toml' | ||
- 'Cargo.lock' | ||
- 'crates/papyrus**/**' | ||
- 'crates/sequencing/**' | ||
- 'crates/starknet_client/**' | ||
|
||
merge_group: | ||
types: [checks_requested] | ||
|
@@ -35,7 +49,7 @@ jobs: | |
- name: Build node | ||
run: | | ||
mkdir data | ||
cargo build -r | ||
cargo build -r -p papyrus_node | ||
- name: Run executable | ||
run: > | ||
|
@@ -54,7 +68,7 @@ jobs: | |
- name: Build node | ||
run: | | ||
mkdir data | ||
cargo build -r --no-default-features | ||
cargo build -r -p papyrus_node --no-default-features | ||
- name: Run executable | ||
run: > | ||
|
@@ -91,19 +105,6 @@ jobs: | |
env: | ||
SEED: 0 | ||
doc: | ||
runs-on: ubuntu-latest | ||
env: | ||
RUSTDOCFLAGS: "-D warnings" | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@stable | ||
- uses: Swatinem/rust-cache@v2 | ||
- uses: Noelware/[email protected] | ||
with: | ||
version: ${{env.PROTOC_VERSION}} | ||
- run: cargo doc --workspace -r --document-private-items --no-deps | ||
|
||
codecov: | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
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
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
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
This file was deleted.
Oops, something went wrong.
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
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
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 @@ | ||
This file is a placeholder for inputs to committer_flow regression test and benchmark. |
File renamed without changes.
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
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
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