Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into girazoki-upgrade-to-1…
Browse files Browse the repository at this point in the history
….0.0
  • Loading branch information
girazoki committed Aug 30, 2023
2 parents 72bb040 + 4b0317c commit 96d7319
Show file tree
Hide file tree
Showing 23 changed files with 4,708 additions and 715 deletions.
3 changes: 2 additions & 1 deletion .cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,6 @@ rustflags = [
"-Aclippy::while_immutable_condition", # false positives
"-Aclippy::needless_option_as_deref", # false positives
"-Aclippy::derivable_impls", # false positives
"-Aclippy::explicit_counter_loop" # irrelevant
"-Aclippy::explicit_counter_loop", # irrelevant
"-Aclippy::redundant_closure_call" # false positives
]
12 changes: 9 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,8 @@ jobs:
uses: actions/checkout@v3
with:
ref: ${{ needs.set-tags.outputs.git_ref }}
- name: Install Protoc
uses: arduino/setup-protoc@v1
- name: Cargo build
uses: ./.github/workflow-templates/cargo-build
- name: Upload runtimes
Expand All @@ -207,8 +209,8 @@ jobs:
- name: Upload binary
uses: actions/upload-artifact@v3.1.2
with:
name: moonbeam
path: build
name: moonkit-template
path: build/moonkit-template

build-features:
runs-on:
Expand All @@ -219,6 +221,8 @@ jobs:
uses: actions/checkout@v3
with:
ref: ${{ needs.set-tags.outputs.git_ref }}
- name: Install Protoc
uses: arduino/setup-protoc@v1
- name: Cargo build
uses: ./.github/workflow-templates/cargo-build
with:
Expand All @@ -227,7 +231,7 @@ jobs:
uses: actions/upload-artifact@v3.1.2
with:
name: moonkit-template-features
path: build
path: build/moonkit-template

rust-test:
runs-on:
Expand All @@ -242,6 +246,8 @@ jobs:
uses: actions/checkout@v3
with:
ref: ${{ needs.set-tags.outputs.git_ref }}
- name: Install Protoc
uses: arduino/setup-protoc@v1
- name: Run sccache-cache
uses: mozilla-actions/sccache-action@v0.0.3
- name: Setup Variables
Expand Down
Loading

0 comments on commit 96d7319

Please sign in to comment.