Skip to content

Commit

Permalink
revert some of the changes
Browse files Browse the repository at this point in the history
  • Loading branch information
RebeccaMahany committed Feb 21, 2024
1 parent bdc5b5b commit 671491a
Showing 1 changed file with 9 additions and 11 deletions.
20 changes: 9 additions & 11 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,13 @@ jobs:
echo "go-mod=$(go env GOMODCACHE)" >> "$GITHUB_OUTPUT"
- name: Go Build Cache
uses: actions/cache@v4
uses: actions/cache@v3
with:
path: ${{ steps.go-cache-paths.outputs.go-build }}
key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }}

- name: Go Mod Cache
uses: actions/cache@v4
uses: actions/cache@v3
with:
path: ${{ steps.go-cache-paths.outputs.go-mod }}
key: ${{ runner.os }}-go-mod-${{ hashFiles('**/go.sum') }}
Expand All @@ -63,9 +63,7 @@ jobs:
uses: goto-bus-stop/setup-zig@v2

- name: Build
run: |
make build_launcher_noop_amd64
make build_launcher_noop_arm64
run: make -j2 github-build

- name: Check macOS build target
if: contains(matrix.os, 'macos')
Expand All @@ -84,7 +82,7 @@ jobs:
run: make test

- name: Cache build output
uses: actions/cache@v4
uses: actions/cache@v3
with:
path: ./build
key: ${{ runner.os }}-${{ github.run_id }}
Expand All @@ -108,7 +106,7 @@ jobs:
version: ${{ steps.version.outputs.version }}
steps:
- name: cache restore build output
uses: actions/cache/restore@v4
uses: actions/cache/restore@v3
with:
path: ./build
key: ${{ runner.os }}-${{ github.run_id }}
Expand Down Expand Up @@ -138,7 +136,7 @@ jobs:
needs: version_baseline
steps:
- name: cache restore build output
uses: actions/cache/restore@v4
uses: actions/cache/restore@v3
with:
path: ./build
key: ${{ runner.os }}-${{ github.run_id }}
Expand Down Expand Up @@ -185,7 +183,7 @@ jobs:
needs: exec_testing
steps:
- name: cache restore build output
uses: actions/cache/restore@v4
uses: actions/cache/restore@v3
with:
path: ./build
key: ${{ matrix.artifactos }}-${{ github.run_id }}
Expand Down Expand Up @@ -227,13 +225,13 @@ jobs:
echo "go-mod=$(go env GOMODCACHE)" >> "$GITHUB_OUTPUT"
- name: Go Build Cache
uses: actions/cache@v4
uses: actions/cache@v3
with:
path: ${{ steps.go-cache-paths.outputs.go-build }}
key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }}

- name: Go Mod Cache
uses: actions/cache@v4
uses: actions/cache@v3
with:
path: ${{ steps.go-cache-paths.outputs.go-mod }}
key: ${{ runner.os }}-go-mod-${{ hashFiles('**/go.sum') }}
Expand Down

0 comments on commit 671491a

Please sign in to comment.