Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
BuddyGlas committed Apr 1, 2024
1 parent 1297208 commit 8f1d8b1
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions .docker/docker-compose.gov.j2
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ services:
- "RUST_TOOLCHAIN={{ RUST_TOOLCHAIN }}"
- "NETWORK={{ NETWORK }}"
- "WASM_NAME={{ WASM_NAME }}"
- "GIT_PRIVATE_CREDENTIALS"={{ GIT_PRIVATE_CREDENTIALS }}
context: ../
dockerfile: .docker/Dockerfile-chain-dev
image: node-dev
Expand Down
1 change: 1 addition & 0 deletions .docker/docker-compose.tmp-dev.j2
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ services:
args:
- "RUST_TOOLCHAIN={{ RUST_TOOLCHAIN }}"
- "NETWORK={{ NETWORK }}"
- "GIT_PRIVATE_CREDENTIALS"={{ GIT_PRIVATE_CREDENTIALS }}
context: ../
dockerfile: .docker/Dockerfile-chain-dev
image: node-dev
Expand Down
1 change: 1 addition & 0 deletions .docker/docker-compose.tmp-unit.j2
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ services:
args:
- "RUST_TOOLCHAIN={{ RUST_TOOLCHAIN }}"
- "NETWORK={{ NETWORK }}"
- "GIT_PRIVATE_CREDENTIALS"={{ GIT_PRIVATE_CREDENTIALS }}
image: node-dev
container_name: node-dev
logging:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/codestyle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ jobs:
toolchain: ${{ env.RUST_TOOLCHAIN }}
targets: wasm32-unknown-unknown
components: rustfmt, clippy
- name: set git configuration
run: git config --global url."https://${{ secrets.GIT_PRIVATE_CREDENTIALS }}@github.com".insteadOf ssh://[email protected]
- name: Run cargo check
run: cargo clippy --features=quartz-runtime,unique-runtime,try-runtime,runtime-benchmarks --tests -- -Dwarnings
env:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/governance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ jobs:
RUST_TOOLCHAIN=${{ env.RUST_TOOLCHAIN }}
NETWORK=${{ matrix.network }}
WASM_NAME=${{ matrix.wasm_name }}
GIT_PRIVATE_CREDENTIALS=${{ secrets.GIT_PRIVATE_CREDENTIALS }}
- name: Show build configuration
run: cat .docker/docker-compose.${{ matrix.network }}.yml
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/polkadot-types.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ jobs:
variables: |
RUST_TOOLCHAIN=${{ env.RUST_TOOLCHAIN }}
NETWORK=${{ matrix.network }}
GIT_PRIVATE_CREDENTIALS=${{ secrets.GIT_PRIVATE_CREDENTIALS }}
- name: Show build configuration
run: cat .docker/docker-compose.${{ matrix.network }}.yml
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/try-runtime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ jobs:
NETWORK=${{ matrix.network }}
WASM_NAME=${{ matrix.wasm_name }}
REPLICA_FROM=${{ matrix.replica_from_address }}
GIT_PRIVATE_CREDENTIALS=${{ secrets.GIT_PRIVATE_CREDENTIALS }}
- name: Show build Dockerfile
run: cat .docker/Dockerfile-try-runtime.${{ matrix.network }}.yml
Expand Down Expand Up @@ -169,7 +170,6 @@ jobs:
variables: |
NETWORK=${{ matrix.network }}
BUILD_TAG=${{ steps.branchname.outputs.value }}-$BUILD_SHA
GIT_PRIVATE_CREDENTIALS=${{ secrets.GIT_PRIVATE_CREDENTIALS }}
- name: Show build configuration
run: cat .docker/docker-compose.try-runtime.${{ matrix.network }}.yml
Expand Down

0 comments on commit 8f1d8b1

Please sign in to comment.