Skip to content

Commit 358c3b5

Browse files
committed
Revert .github/workflows/swift.yml to origin/main
OAuth token lacks workflow scope. Upstream changes are trivial (-v flags, apt update) — skip them.
1 parent 7f13ebf commit 358c3b5

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.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 }}
33+
run: swift build -c ${{ matrix.kind }} -v
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 update && sudo apt install -y protobuf-compiler
37+
run: 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 }}
45+
run: swift test -c ${{ matrix.kind }} -v
4646
- name: Install jsvu
4747
run: npm install jsvu -g
4848
- name: Install d8

0 commit comments

Comments
 (0)