Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

A0-1610: Contract support redux #816

Merged
merged 21 commits into from
Dec 29, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Authenticate when installing protoc
This should make it less likely that we hit API limits.
  • Loading branch information
obrok committed Dec 27, 2022
commit f7563d4807df963bd67d18531a8b0b3c64529b1b
1 change: 1 addition & 0 deletions .github/workflows/build-and-push-cliain.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
uses: arduino/setup-protoc@v1
with:
version: '3.6.1'
repo-token: ${{ secrets.GH_TOKEN }}

- name: Cargo | Build release binary
run: |
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/build-node-and-runtime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ jobs:
uses: arduino/setup-protoc@v1
with:
version: '3.6.1'
repo-token: ${{ secrets.GH_TOKEN }}

- name: Install WASM target
run: rustup target add wasm32-unknown-unknown
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ jobs:
uses: arduino/setup-protoc@v1
with:
version: '3.6.1'
repo-token: ${{ secrets.GH_TOKEN }}

- name: Build binary
run: |
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/check-excluded-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ jobs:
uses: arduino/setup-protoc@v1
with:
version: '3.6.1'
repo-token: ${{ secrets.GH_TOKEN }}

- name: Read excluded packages from Cargo.toml
id: read_excluded
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/e2e-tests-main-devnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ jobs:
uses: arduino/setup-protoc@v1
with:
version: '3.6.1'
repo-token: ${{ secrets.GH_TOKEN }}

- name: Restore cache
uses: ./.github/actions/restore-cache
Expand Down Expand Up @@ -116,6 +117,7 @@ jobs:
uses: arduino/setup-protoc@v1
with:
version: '3.6.1'
repo-token: ${{ secrets.GH_TOKEN }}

- name: Install WASM target
run: rustup target add wasm32-unknown-unknown
Expand Down Expand Up @@ -154,6 +156,7 @@ jobs:
uses: arduino/setup-protoc@v1
with:
version: '3.6.1'
repo-token: ${{ secrets.GH_TOKEN }}

- name: Restore cache
uses: ./.github/actions/restore-cache
Expand Down Expand Up @@ -840,6 +843,7 @@ jobs:
uses: arduino/setup-protoc@v1
with:
version: '3.6.1'
repo-token: ${{ secrets.GH_TOKEN }}

- name: Install WASM target
run: rustup target add wasm32-unknown-unknown
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/nightly-pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ jobs:
uses: arduino/setup-protoc@v1
with:
version: '3.6.1'
repo-token: ${{ secrets.GH_TOKEN }}

- name: Install WASM target
run: rustup target add wasm32-unknown-unknown
Expand Down Expand Up @@ -97,6 +98,7 @@ jobs:
uses: arduino/setup-protoc@v1
with:
version: '3.6.1'
repo-token: ${{ secrets.GH_TOKEN }}

- name: Restore cache
uses: ./.github/actions/restore-cache
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ jobs:
uses: arduino/setup-protoc@v1
with:
version: '3.6.1'
repo-token: ${{ secrets.GH_TOKEN }}

- name: Install clippy and fmt
run: rustup component add clippy rustfmt
Expand Down