Skip to content

Commit

Permalink
fix(ci): Set the protoc-arch matrix for weekly job (#619)
Browse files Browse the repository at this point in the history
This is used to select the architecture of the protoc compiler to
download.  It doesn't need to be so dynamic in this workflow but
keeping it this way makes it more similar to the main ci workflow and
thus hopefully easier to maintain.

Closes #618
  • Loading branch information
flub authored Dec 19, 2022
1 parent 5f2d87f commit 22d68df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/weekly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ jobs:
fail-fast: false
matrix:
rust: [beta]
protoc-arch: [linux-x86_64]

runs-on: ubuntu-latest

Expand All @@ -27,7 +28,6 @@ jobs:
echo "PROTOC_ARCH=${{ matrix.protoc-arch }}" >> $GITHUB_ENV
- name: Install Protoc
if: matrix.os != 'windows-latest'
run: |
PROTOC_VERSION=3.20.1
PROTOC_ZIP=protoc-$PROTOC_VERSION-$PROTOC_ARCH.zip
Expand Down

0 comments on commit 22d68df

Please sign in to comment.