Skip to content

Commit

Permalink
Change directory name in more jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
gjcairo authored and thomasvl committed Aug 12, 2024
1 parent cdc3b1f commit 259bf67
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/check_upstream_protos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
with:
path: main
path: swift-protobuf
- name: Checkout protobufbuffers/protobuf
uses: actions/checkout@v4
with:
repository: protocolbuffers/protobuf
path: protobuf
- name: Check Upstream Proto Files
working-directory: main
working-directory: swift-protobuf
run: make check-proto-files
6 changes: 3 additions & 3 deletions .github/workflows/regular_conformance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
with:
path: main
path: swift-protobuf
- name: Update and install dependencies
# dependencies from https://github.com/protocolbuffers/protobuf/blob/main/src/README.md
# this step is run before get-sha because we need curl and jq for get-sha
Expand All @@ -71,7 +71,7 @@ jobs:
with:
path: protobuf
# NOTE: for refs that can float like 'main' the cache might be out of date!
key: ${{ runner.os }}-${{ matrix.swift}}-protobuf-${{ steps.get-sha.outputs.sha }}
key: ${{ runner.os }}-${{ matrix.swift }}-protobuf-${{ steps.get-sha.outputs.sha }}
- name: Checkout protobuf repo
if: steps.cache-protobuf.outputs.cache-hit != 'true'
uses: actions/checkout@v4
Expand All @@ -95,5 +95,5 @@ jobs:
NUM_CPUS=$(getconf _NPROCESSORS_ONLN)
make -j "${NUM_CPUS}" protoc conformance_test_runner
- name: Test conformance
working-directory: main
working-directory: swift-protobuf
run: make test-conformance CONFORMANCE_TEST_RUNNER=../protobuf/cmake_build/conformance_test_runner

0 comments on commit 259bf67

Please sign in to comment.