mirror of
https://github.com/pomerium/pomerium.git
synced 2025-07-03 18:08:13 +02:00
remove manual caching
This commit is contained in:
parent
326b38aea8
commit
a3adcfed69
2 changed files with 0 additions and 64 deletions
10
.github/workflows/benchmark.yaml
vendored
10
.github/workflows/benchmark.yaml
vendored
|
@ -33,16 +33,6 @@ jobs:
|
||||||
- name: set env vars
|
- name: set env vars
|
||||||
run: echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
|
run: echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
|
||||||
|
|
||||||
- uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8
|
|
||||||
with:
|
|
||||||
path: |
|
|
||||||
~/go/pkg
|
|
||||||
~/.cache/go-build
|
|
||||||
~/Library/Caches/go-build
|
|
||||||
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
|
||||||
restore-keys: |
|
|
||||||
${{ runner.os }}-go-
|
|
||||||
|
|
||||||
- name: build dev docker image
|
- name: build dev docker image
|
||||||
run: |
|
run: |
|
||||||
./scripts/build-dev-docker.bash
|
./scripts/build-dev-docker.bash
|
||||||
|
|
54
.github/workflows/test.yaml
vendored
54
.github/workflows/test.yaml
vendored
|
@ -29,23 +29,6 @@ jobs:
|
||||||
- name: set env vars
|
- name: set env vars
|
||||||
run: echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
|
run: echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
|
||||||
|
|
||||||
- name: cache go binaries
|
|
||||||
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8
|
|
||||||
id: cache-go-bin
|
|
||||||
with:
|
|
||||||
path: ~/go/bin
|
|
||||||
key: ${{ runner.os }}-${{ hashFiles('**/go.mod') }}
|
|
||||||
restore-keys: ${{ runner.os }}-go-bin
|
|
||||||
|
|
||||||
- uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8
|
|
||||||
with:
|
|
||||||
path: |
|
|
||||||
~/go/pkg/mod
|
|
||||||
~/.cache/go-build
|
|
||||||
~/Library/Caches/go-build
|
|
||||||
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
|
||||||
restore-keys: ${{ runner.os }}-go-
|
|
||||||
|
|
||||||
- run: make deps-build
|
- run: make deps-build
|
||||||
|
|
||||||
- name: test
|
- name: test
|
||||||
|
@ -71,23 +54,6 @@ jobs:
|
||||||
- name: set env vars
|
- name: set env vars
|
||||||
run: echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
|
run: echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
|
||||||
|
|
||||||
- name: cache go binaries
|
|
||||||
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8
|
|
||||||
id: cache-go-bin
|
|
||||||
with:
|
|
||||||
path: ~/go/bin
|
|
||||||
key: ${{ runner.os }}-${{ hashFiles('**/go.mod') }}
|
|
||||||
restore-keys: ${{ runner.os }}-go-bin
|
|
||||||
|
|
||||||
- uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8
|
|
||||||
with:
|
|
||||||
path: |
|
|
||||||
~/go/pkg/mod
|
|
||||||
~/.cache/go-build
|
|
||||||
~/Library/Caches/go-build
|
|
||||||
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
|
||||||
restore-keys: ${{ runner.os }}-go-
|
|
||||||
|
|
||||||
- name: cover
|
- name: cover
|
||||||
run: make cover
|
run: make cover
|
||||||
|
|
||||||
|
@ -126,16 +92,6 @@ jobs:
|
||||||
- name: set env vars
|
- name: set env vars
|
||||||
run: echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
|
run: echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
|
||||||
|
|
||||||
- uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8
|
|
||||||
with:
|
|
||||||
path: |
|
|
||||||
~/go/pkg
|
|
||||||
~/.cache/go-build
|
|
||||||
~/Library/Caches/go-build
|
|
||||||
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
|
||||||
restore-keys: |
|
|
||||||
${{ runner.os }}-go-
|
|
||||||
|
|
||||||
- name: build dev docker image
|
- name: build dev docker image
|
||||||
run: |
|
run: |
|
||||||
./scripts/build-dev-docker.bash
|
./scripts/build-dev-docker.bash
|
||||||
|
@ -169,16 +125,6 @@ jobs:
|
||||||
with:
|
with:
|
||||||
node-version: ${{ matrix.node-version }}
|
node-version: ${{ matrix.node-version }}
|
||||||
|
|
||||||
- uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8
|
|
||||||
with:
|
|
||||||
path: |
|
|
||||||
~/go/pkg/mod
|
|
||||||
~/.cache/go-build
|
|
||||||
~/Library/Caches/go-build
|
|
||||||
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
|
||||||
restore-keys: |
|
|
||||||
${{ runner.os }}-go-
|
|
||||||
|
|
||||||
- name: build
|
- name: build
|
||||||
run: |
|
run: |
|
||||||
make build-deps
|
make build-deps
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue