Skip to content

Commit 2a867e9

Browse files
LiedtkeV8-internal LUCI CQ
authored andcommitted
[github] Fix protobuf installation for presubmit checks
Change-Id: I95e6e68e0ce4d2051f3c267667aedef63207b6c2 Reviewed-on: https://chrome-internal-review.googlesource.com/c/v8/fuzzilli/+/9064377 Commit-Queue: Michael Achenbach <machenbach@google.com> Auto-Submit: Matthias Liedtke <mliedtke@google.com> Reviewed-by: Michael Achenbach <machenbach@google.com>
1 parent 283cd7f commit 2a867e9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/swift.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,19 +30,19 @@ jobs:
3030
run: swift --version
3131
- uses: actions/checkout@v2
3232
- name: Build
33-
run: swift build -c ${{ matrix.kind }} -v
33+
run: swift build -c ${{ matrix.kind }}
3434
- name: Install protobuf
3535
# Install protoc so the presubmit can also validate the generated *.pb.swift files.
3636
if: ${{ matrix.os == 'ubuntu-latest' && matrix.kind == 'debug' }}
37-
run: sudo apt install -y protobuf-compiler
37+
run: sudo apt update && sudo apt install -y protobuf-compiler
3838
- name: Install Node.js dependencies for Compiler/Parser tests
3939
working-directory: ./Sources/Fuzzilli/Compiler/Parser
4040
run: npm install
4141
- name: Run presubmit checks
4242
if: ${{ matrix.os == 'ubuntu-latest' && matrix.kind == 'debug' }}
4343
run: python3 Tools/presubmit.py
4444
- name: Run tests with Node.js
45-
run: swift test -c ${{ matrix.kind }} -v
45+
run: swift test -c ${{ matrix.kind }}
4646
- name: Install jsvu
4747
run: npm install jsvu -g
4848
- name: Install d8

0 commit comments

Comments
 (0)