Skip to content

Commit

Permalink
chore: add build / test / publish workflows for the services
Browse files Browse the repository at this point in the history
Signed-off-by: Sven Trieflinger <[email protected]>
  • Loading branch information
strieflin committed Oct 25, 2024
1 parent ec40ac0 commit 3cd6811
Show file tree
Hide file tree
Showing 2 changed files with 167 additions and 0 deletions.
79 changes: 79 additions & 0 deletions .github/workflows/services.build-and-test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
#
# Copyright (c) 2024 - for information on the respective copyright owner
# see the NOTICE file and/or the repository https://github.com/carbynestack/thymus.
#
# SPDX-License-Identifier: Apache-2.0
#
name: Build and Test Services
on:
workflow_dispatch:
push:
branches:
- 'master'
pull_request:
branches:
- 'master'
jobs:
changes:
runs-on: ubuntu-22.04
permissions:
pull-requests: read
outputs:
service: ${{ steps.filter.outputs.services }}
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Check whether services codebase is affected
uses: dorny/paths-filter@v3
id: filter
with:
filters: |
services:
- 'services/**'
services-test:
runs-on: ubuntu-22.04
needs: changes
if: ${{ needs.changes.outputs.service == 'true' }}
env:
GOPATH: ${{ github.workspace }}
GO111MODULE: on
REGISTRY: ghcr.io
defaults:
run:
working-directory: ${{ env.GOPATH }}/src/github.com/${{ github.repository }}/services
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
path: ${{ env.GOPATH }}/src/github.com/${{ github.repository }}
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: ${{ env.GOPATH }}/src/github.com/${{ github.repository }}/services/go.mod
cache-dependency-path: ${{ env.GOPATH }}/src/github.com/${{ github.repository }}services/go.sum
- name: Perform Build
run: |
go build ./...
- name: Perform Tests
run: |
go test ./... -coverprofile coverage.txt
- name: Publishing Coverage
uses: codecov/codecov-action@v4
with:
name: codecov
files: ${{ env.GOPATH }}/src/github.com/${{ github.repository }}/services/coverage.txt
token: ${{ secrets.CODECOV_TOKEN }}
flags: services
# This is required to allow for setting the test job as required in scenarios
# where the tests are not actually run, e.g., when the helm chart is updated.
services-test-status:
runs-on: ubuntu-22.04
needs: services-test
if: '!cancelled()' # Makes the job run regardless whether 'test' succeeds or not but allows for cancellation
steps:
- name: Tests successful
if: ${{ !(contains(needs.services-test.result, 'failure')) }}
run: exit 0
- name: Tests failed
if: ${{ contains(needs.services-test.result, 'failure') }}
run: exit 1
88 changes: 88 additions & 0 deletions .github/workflows/services.publish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
#
# Copyright (c) 2024 - for information on the respective copyright owner
# see the NOTICE file and/or the repository https://github.com/carbynestack/thymus.
#
# SPDX-License-Identifier: Apache-2.0
#
name: Publish Services
on:
push:
tags:
- "services-v[0-9]+.[0-9]+.[0-9]+"
env:
REGISTRY: ghcr.io
IMAGE_NAME: carbynestack/thymus
jobs:
publish:
runs-on: ubuntu-22.04
env:
GOPATH: ${{ github.workspace }}
GO111MODULE: on
WORKING_DIRECTORY: ${{ github.workspace }}/src/github.com/${{ github.repository }}/services
defaults:
run:
working-directory: ${{ env.WORKING_DIRECTORY }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
path: ${{ env.GOPATH }}/src/github.com/${{ github.repository }}
- name: Retrieve license obligation resources
run: |
cd 3RD-PARTY-LICENSES
find . -maxdepth 1 -type d -not -path . | zip -r@ 3rd-party-copyrights
find . -iname origin.src | \
awk '{ \
split($0,b,"/"); \
system("xargs < " $0 " curl --create-dirs -Lo ./sources/" b[2] ".zip " $2)}' && \
find -regex './sources$' | awk '{system("zip -jr ./3rd-party-sources.zip " $0)}'
mkdir -p ../license-obligations && mv `find . -regex "^./3rd-party-.*.zip$"` ../license-obligations/
- name: Update Release with license obligations resources
uses: ncipollo/release-action@v1
with:
allowUpdates: true
artifacts: ${{ env.WORKING_DIRECTORY }}/license-obligations/*
artifactErrorsFailBuild: true
makeLatest: true
omitBodyDuringUpdate: true
omitNameDuringUpdate: true
- name: Log in to container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=match,pattern=services-v(\d+.\d+.\d+),group=1
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: ${{ env.GOPATH }}/src/github.com/${{ github.repository }}/services/go.mod
cache-dependency-path: ${{ env.GOPATH }}/src/github.com/${{ github.repository }}/services/go.sum
- name: Setup Ko
uses: imjasonh/[email protected]
- name: Publish Docker Images
run: |
# Generate tags flag (Metadata action output is newline delimited entries like
# 'ghcr.io/carbynestack/thymus:0.1.10' and we only need the part after the colon)
readarray -t tags < <( echo "${{ steps.meta.outputs.tags }}" )
for i in "${!tags[@]}"; do
readarray -d ":" -t parts < <( echo "${tags[i]}" )
tags[i]=$(echo "${parts[1]}" | tr -d '\n')
done
printf -v joined_tags "%s," "${tags[@]}"
# Generate label flags
readarray -t labels < <( echo "${{ steps.meta.outputs.labels }}" )
printf -v label_flags -- "--image-label=%s " "${labels[@]}"
# Publish using ko
ko publish -B \
--tags="${joined_tags%,}" \
"${label_flags}" \
github.com/carbynestack/thymus/services/cmd/catalogue

0 comments on commit 3cd6811

Please sign in to comment.