-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into gbt-proposal-mode
- Loading branch information
Showing
36 changed files
with
1,300 additions
and
162 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -99,6 +99,10 @@ jobs: | |
if: ${{ !cancelled() && !failure() && ((github.event_name == 'push' && github.ref_name == 'main') || github.event_name == 'release') }} | ||
|
||
steps: | ||
- uses: actions/[email protected] | ||
with: | ||
persist-credentials: false | ||
|
||
- name: Inject slug/short variables | ||
uses: rlespinasse/github-slug-action@v4 | ||
with: | ||
|
@@ -189,6 +193,10 @@ jobs: | |
if: github.event_name == 'workflow_dispatch' | ||
|
||
steps: | ||
- uses: actions/[email protected] | ||
with: | ||
persist-credentials: false | ||
|
||
- name: Inject slug/short variables | ||
uses: rlespinasse/github-slug-action@v4 | ||
with: | ||
|
@@ -217,8 +225,9 @@ jobs: | |
--container-stdin \ | ||
--container-tty \ | ||
--container-image ${{ env.GAR_BASE }}/zebrad@${{ needs.build.outputs.image_digest }} \ | ||
--create-disk=name=auto-delete=yes,size=300GB,type=pd-ssd \ | ||
--container-mount-disk=mount-path='/zebrad-cache' \ | ||
--create-disk=auto-delete=yes,size=300GB,type=pd-ssd \ | ||
--create-disk=name=zebrad-cache-${{ env.GITHUB_SHA_SHORT }},auto-delete=yes,size=300GB,type=pd-ssd \ | ||
--container-mount-disk=mount-path='/zebrad-cache',name=zebrad-cache-${{ env.GITHUB_SHA_SHORT }} \ | ||
--machine-type ${{ env.MACHINE_TYPE }} \ | ||
--zone ${{ env.ZONE }} \ | ||
--labels=app=zebrad,environment=qa,network=${NETWORK},github_ref=${{ env.GITHUB_REF_SLUG_URL }} \ | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,7 +37,7 @@ jobs: | |
|
||
- name: Rust files | ||
id: changed-files-rust | ||
uses: tj-actions/changed-files@v35.2.1 | ||
uses: tj-actions/changed-files@v35.4.0 | ||
with: | ||
files: | | ||
**/*.rs | ||
|
@@ -49,7 +49,7 @@ jobs: | |
- name: Workflow files | ||
id: changed-files-workflows | ||
uses: tj-actions/changed-files@v35.2.1 | ||
uses: tj-actions/changed-files@v35.4.0 | ||
with: | ||
files: | | ||
.github/workflows/*.yml | ||
|
@@ -67,9 +67,10 @@ jobs: | |
persist-credentials: false | ||
|
||
- name: Install last version of Protoc | ||
uses: arduino/setup-protoc@v1 | ||
uses: arduino/setup-protoc@v1.1.2 | ||
with: | ||
version: '3.x' | ||
# TODO: increase to latest version after https://github.com/arduino/setup-protoc/issues/33 is fixed | ||
version: '3.20.1' | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Check workflow permissions | ||
|
@@ -117,9 +118,10 @@ jobs: | |
persist-credentials: false | ||
|
||
- name: Install last version of Protoc | ||
uses: arduino/setup-protoc@v1 | ||
uses: arduino/setup-protoc@v1.1.2 | ||
with: | ||
version: '3.x' | ||
# TODO: increase to latest version after https://github.com/arduino/setup-protoc/issues/33 is fixed | ||
version: '3.20.1' | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- uses: actions-rs/[email protected] | ||
|
@@ -157,9 +159,10 @@ jobs: | |
persist-credentials: false | ||
|
||
- name: Install last version of Protoc | ||
uses: arduino/setup-protoc@v1 | ||
uses: arduino/setup-protoc@v1.1.2 | ||
with: | ||
version: '3.x' | ||
# TODO: increase to latest version after https://github.com/arduino/setup-protoc/issues/33 is fixed | ||
version: '3.20.1' | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- uses: actions-rs/[email protected] | ||
|
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.