Store auth in keyring and transfer it to nydusd via environment variable #1937
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: integration test | |
on: | |
push: | |
branches: | |
- "main" | |
tags: | |
- v[0-9]+.[0-9]+.[0-9]+ | |
pull_request: | |
branches: | |
- "main" | |
schedule: | |
# Trigger test every day at 00:03 clock UTC | |
- cron: "3 0 * * *" | |
workflow_dispatch: | |
env: | |
CARGO_TERM_COLOR: always | |
REGISTRY: ghcr.io | |
jobs: | |
run-e2e-for-cgroups-v1: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: "1.19.6" | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: cache go mod | |
uses: actions/cache@v3 | |
with: | |
path: ~/go/pkg/mod | |
key: ${{ runner.os }}-go-${{ hashFiles('go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go | |
- name: Log in to container registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Run e2e test | |
run: | | |
TAG=$GITHUB_REF_NAME | |
[ "$TAG" == "main" ] && TAG="latest" | |
[ "$GITHUB_EVENT_NAME" == "pull_request" ] && TAG="local" | |
make integration | |
run-e2e-for-cgroups-v2: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: "1.19.6" | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: cache go mod | |
uses: actions/cache@v3 | |
with: | |
path: ~/go/pkg/mod | |
key: ${{ runner.os }}-go-${{ hashFiles('go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go | |
- name: Log in to container registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Run e2e test | |
run: | | |
TAG=$GITHUB_REF_NAME | |
[ "$TAG" == "main" ] && TAG="latest" | |
[ "$GITHUB_EVENT_NAME" == "pull_request" ] && TAG="local" | |
make integration |