-
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
5 changed files
with
59 additions
and
14 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 |
---|---|---|
@@ -1 +1 @@ | ||
use flake | ||
use flake '.?submodules=1' |
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,51 @@ | ||
name: Build | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
branches: | ||
- "**" | ||
paths-ignore: | ||
- '*.md' | ||
workflow_dispatch: | ||
|
||
# This allows a subsequently queued workflow run to interrupt previous runs on pull-requests | ||
concurrency: | ||
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.run_id }}' | ||
cancel-in-progress: true | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
CARGO_INCREMENTAL: 0 | ||
CARGO_NET_RETRY: 10 | ||
RUST_BACKTRACE: short | ||
# We allow redundant explicit links because `cargo rdme` doesn't know how to resolve implicit intra-crate links. | ||
RUSTDOCFLAGS: -A rustdoc::redundant_explicit_links -D warnings | ||
# We will re-enable this once the client worker builds without warnings. | ||
# RUSTFLAGS: -D warnings | ||
RUSTUP_MAX_RETRIES: 10 | ||
RUST_LOG: warn | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
- uses: cachix/install-nix-action@v26 | ||
- uses: DeterminateSystems/magic-nix-cache-action@main | ||
- name: Build the client worker | ||
run: | | ||
cd client-worker | ||
nix develop '.?submodules=1' --override-input linera-protocol ../linera-protocol --command wasm-pack build --target web | ||
- name: Build the extension | ||
run: | | ||
cd extension | ||
nix develop --override-input linera-protocol ../linera-protocol --command pnpm install | ||
nix develop --override-input linera-protocol ../linera-protocol --command pnpm build |
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,3 +1,3 @@ | ||
[submodule "linera-protocol"] | ||
path = linera-protocol | ||
url = [email protected]:linera-io/linera-protocol | ||
url = [email protected]:Twey/linera-protocol |
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