Skip to content

Refactor ownership test, add unit test for read and search #1207

Refactor ownership test, add unit test for read and search

Refactor ownership test, add unit test for read and search #1207

Workflow file for this run

#
name: Orchestrator
# Configures this workflow to run every time a change is pushed to the branch called `main`.
on:
push:
paths:
- orchestrator/**
- .github/workflows/orchestrator.yaml
# Defines two custom environment variables for the workflow. These are used for the Container registry domain, and a name for the Docker image that this workflow builds.
env:
REGISTRY: ghcr.io
# There is a single job in this workflow. It's configured to run on the latest available version of Ubuntu.
jobs:
unit-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.22'
- name: Test
working-directory: ./orchestrator
run: go test -v ./...
docker-image:
needs:
- unit-test
runs-on: ubuntu-latest
# Sets the permissions granted to the `GITHUB_TOKEN` for the actions in this job.
permissions:
id-token: write
contents: read
packages: write
attestations: write
outputs:
fully_qualified: ${{ steps.meta.outputs.tags }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
# This step sets the IMAGE_NAME and lowercases the Github username (organizationname) and reponame. This avoids errors (could not find image) in the artifact attestation step
- name: set IMAGE_NAME (and lowercase GITHUB_REPOSITORY)
run: |
echo "IMAGE_NAME=${GITHUB_REPOSITORY@L}_orchestrator" >> "${GITHUB_ENV}"
# Uses the `docker/#-action` action to log in to the Container registry registry using the account and password that will publish the packages. Once published, the packages are scoped to the account defined here.
- name: Log in to the Container registry
uses: docker/#-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
# This step uses [docker/metadata-action](https://github.com/docker/metadata-action#about) to extract tags and labels that will be applied to the specified image. The `id` "meta" allows the output of this step to be referenced in a subsequent step. The `images` value provides the base name for the tags and labels.
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
flavor: |
latest=auto
# This step uses the `docker/build-push-action` action to build the image, based on your repository's `Dockerfile`. If the build succeeds, it pushes the image to GitHub Packages.
# It uses the `context` parameter to define the build's context as the set of files located in the specified path. For more information, see "[Usage](https://github.com/docker/build-push-action#usage)" in the README of the `docker/build-push-action` repository.
# It uses the `tags` and `labels` parameters to tag and label the image with the output from the "meta" step.
- name: Build and push Docker image
id: push
uses: docker/build-push-action@v6
with:
context: ./orchestrator
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
# This step generates an artifact attestation for the image, which is an unforgeable statement about where and how it was built. It increases supply chain security for people who consume the image. For more information, see "[AUTOTITLE](/actions/security-guides/using-artifact-attestations-to-establish-provenance-for-builds)."
- name: Generate artifact attestation
uses: actions/attest-build-provenance@v2
with:
subject-name: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME}}
subject-digest: ${{ steps.push.outputs.digest }}
push-to-registry: true
e2e-test:
needs:
- docker-image
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.22'
- name: Run E2E tests
working-directory: ./e2e-tests
# Docker outputs contains 2 docker tags, we only need the first one
run: ORCHESTRATOR_IMAGE=$(echo "${{needs.docker-image.outputs.fully_qualified}}" | cut -d' ' -f1-1) go test -v ./...