Lock dedicated file instead of token cache file #2364
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: system-test | |
on: | |
pull_request: | |
branches: | |
- master | |
paths: | |
- .github/workflows/system-test.yaml | |
- system_test/** | |
- pkg/** | |
- go.* | |
push: | |
branches: | |
- master | |
paths: | |
- .github/workflows/system-test.yaml | |
- system_test/** | |
- pkg/** | |
- go.* | |
jobs: | |
system-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
cache-dependency-path: go.sum | |
# for certutil | |
# https://packages.ubuntu.com/xenial/libnss3-tools | |
- run: sudo apt update | |
- run: sudo apt install -y libnss3-tools | |
- run: mkdir -p ~/.pki/nssdb | |
- run: echo '127.0.0.1 dex-server' | sudo tee -a /etc/hosts | |
- run: make -C system_test -j3 | |
- run: make -C system_test logs | |
if: always() |