-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/develop' into rm/restructure-eve…
…nts-vid
- Loading branch information
Showing
26 changed files
with
205 additions
and
286 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,46 @@ | ||
name: Build, Lint, and Test (self-hosted) | ||
|
||
on: | ||
push: | ||
branches: | ||
workflow_dispatch: | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
build: | ||
strategy: | ||
matrix: | ||
just_variants: | ||
- async_std | ||
#- tokio | ||
runs-on: [self-hosted] | ||
steps: | ||
- uses: dtolnay/rust-toolchain@stable | ||
name: Install Current Rust | ||
with: | ||
components: "clippy, rustfmt" | ||
|
||
- uses: actions/checkout@v4 | ||
name: Checkout Repository | ||
|
||
- uses: Swatinem/rust-cache@v2 | ||
name: Enable Rust Caching | ||
with: | ||
prefix-key: ${{ matrix.just_variants }} | ||
|
||
- name: Run linting | ||
run: | | ||
just ${{ matrix.just_variants }} lint | ||
- name: Build all crates in workspace | ||
run: just ${{ matrix.just_variants }} build | ||
|
||
- name: Unit and integration tests for all crates in workspace | ||
run: | | ||
just ${{ matrix.just_variants }} test | ||
timeout-minutes: 60 | ||
env: | ||
RUST_BACKTRACE: full |
Validating CODEOWNERS rules …
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 |
---|---|---|
@@ -1,5 +1,51 @@ | ||
# These owners will be the default owners for everything in | ||
# the repo. Unless a later match takes precedence, | ||
# @elliedavidson and @bfish713 will be requested for | ||
# review when someone opens a pull request. | ||
* @elliedavidson @bfish713 | ||
# Default owners and repository maintainers: | ||
* @elliedavidson @bfish713 | ||
|
||
# Owner of `constants` crate | ||
/constants/ @shenkeyao | ||
|
||
# Owner of `hotshot` crate | ||
/hotshot/ @shenkeyao | ||
|
||
# Owner of `hotshot-qc` crate | ||
/hotshot-qc/ @dailinsubjam | ||
|
||
# Owner of `hotshot-signature-key` crate | ||
/hotshot-signature-key/ @dailinsubjam | ||
|
||
# Owner of `hotshot-stake-table` crate | ||
/hotshot-stake-table/ @dailinsubjam | ||
|
||
# Owner of `hotshot-state-prover` crate | ||
/hotshot-state-prover/ @dailinsubjam | ||
|
||
# Owner of `libp2p-networking` crate | ||
/libp2p-networking/ @rob-maron @DieracDelta | ||
|
||
# Owner of `orchestrator` crate | ||
/orchestrator/ @rob-maron @elliedavidson | ||
|
||
# Owner of `task` crate | ||
/task/ @rob-maron @DieracDelta | ||
|
||
# Owner of `task-impls` crate | ||
/task-impls/ @elliedavidson @bfish713 | ||
|
||
# Owner of `testing` crate | ||
/testing/ @DieracDelta @bfish713 | ||
|
||
# Owner of `types` crate | ||
/types/ @shenkeyao | ||
|
||
# Owner of `utils` crate | ||
/utils/ @shenkeyao | ||
|
||
# Owner of `web_server` crate | ||
/web_server/ @elliedavidson | ||
|
||
# Owner of updating dependencies | ||
# This owner is updated on a monthly basis | ||
*.lock @rob-maron | ||
**/Cargo.toml @rob-maron | ||
Cargo.toml @rob-maron | ||
flake.nix @rob-maron |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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
Oops, something went wrong.