-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI: Improve staging OCI images to GHCR, using GHA
- Loading branch information
Showing
11 changed files
with
228 additions
and
53 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
* | ||
!tsperf | ||
!release | ||
!setup.py | ||
!MANIFEST.in | ||
!pyproject.toml | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,146 @@ | ||
# Stage OCI container images through GitHub Actions (GHA) to GitHub Container Registry (GHCR). | ||
name: OCI | ||
|
||
on: | ||
pull_request: ~ | ||
push: | ||
tags: | ||
- '*.*.*' | ||
|
||
schedule: | ||
- cron: '45 00 * * *' # every day at 00:45 am | ||
|
||
# Allow job to be triggered manually. | ||
workflow_dispatch: | ||
|
||
# Cancel in-progress jobs when pushing to the same branch. | ||
concurrency: | ||
cancel-in-progress: true | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
|
||
# The name for the produced image at ghcr.io. | ||
env: | ||
IMAGE_NAME: "${{ github.repository }}" | ||
|
||
jobs: | ||
|
||
build-and-test: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Acquire sources | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.11" | ||
architecture: "x64" | ||
cache: "pip" | ||
cache-dependency-path: | | ||
pyproject.toml | ||
setup.py | ||
- name: Build wheel package | ||
run: | | ||
pip install build | ||
python -m build | ||
- name: Upload wheel package | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: ${{ runner.os }}-wheel-${{ github.sha }} | ||
path: dist/*.whl | ||
retention-days: 7 | ||
|
||
- name: Run tests | ||
run: | | ||
if [[ -f release/oci/test.yml ]]; then | ||
export DOCKER_BUILDKIT=1 | ||
export COMPOSE_DOCKER_CLI_BUILD=1 | ||
docker-compose --file release/oci/test.yml build | ||
docker-compose --file release/oci/test.yml run sut | ||
fi | ||
build-and-publish: | ||
needs: build-and-test | ||
runs-on: ubuntu-latest | ||
if: ${{ ! (startsWith(github.actor, 'dependabot') || github.event.pull_request.head.repo.fork ) }} | ||
|
||
steps: | ||
- name: Acquire sources | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Define image name and tags | ||
id: meta | ||
uses: docker/metadata-action@v5 | ||
with: | ||
# List of OCI images to use as base name for tags | ||
images: | | ||
ghcr.io/${{ env.IMAGE_NAME }} | ||
# Generate OCI image tags based on the following events/attributes | ||
tags: | | ||
type=schedule,pattern=nightly | ||
type=ref,event=pr | ||
type=semver,pattern={{version}} | ||
type=semver,pattern={{major}}.{{minor}} | ||
- name: Inspect metadata | ||
run: | | ||
echo "Tags: ${{ steps.meta.outputs.tags }}" | ||
echo "Labels: ${{ steps.meta.outputs.labels }}" | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v3 | ||
|
||
- name: Set up Docker Buildx | ||
id: buildx | ||
uses: docker/setup-buildx-action@v3 | ||
|
||
- name: Cache OCI layers | ||
uses: actions/cache@v4 | ||
with: | ||
path: /tmp/.buildx-cache | ||
key: ${{ runner.os }}-buildx-${{ github.sha }} | ||
restore-keys: | | ||
${{ runner.os }}-buildx- | ||
- name: Inspect builder | ||
run: | | ||
echo "Name: ${{ steps.buildx.outputs.name }}" | ||
echo "Endpoint: ${{ steps.buildx.outputs.endpoint }}" | ||
echo "Status: ${{ steps.buildx.outputs.status }}" | ||
echo "Flags: ${{ steps.buildx.outputs.flags }}" | ||
echo "Platforms: ${{ steps.buildx.outputs.platforms }}" | ||
- name: Login to GHCR | ||
uses: docker/login-action@v3 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.repository_owner }} | ||
password: ${{ github.token }} | ||
|
||
- name: Build and push image | ||
uses: docker/build-push-action@v5 | ||
with: | ||
context: . | ||
file: release/oci/Dockerfile | ||
platforms: linux/amd64 # linux/arm64,linux/arm/v7 | ||
tags: ${{ steps.meta.outputs.tags }} | ||
labels: ${{ steps.meta.outputs.labels }} | ||
push: true | ||
cache-from: type=local,src=/tmp/.buildx-cache | ||
cache-to: type=local,dest=/tmp/.buildx-cache-new | ||
|
||
- name: Move cache | ||
run: | | ||
rm -rf /tmp/.buildx-cache | ||
mv /tmp/.buildx-cache-new /tmp/.buildx-cache | ||
- name: Display git status | ||
run: | | ||
set -x | ||
git describe --tags --always | ||
git status |
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
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
/_build | ||
_build |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
FROM python:3.11 | ||
|
||
ENV DEBIAN_FRONTEND noninteractive | ||
ENV TERM linux | ||
|
||
# Install dependencies for pyodbc. | ||
RUN curl https://packages.microsoft.com/keys/microsoft.asc | apt-key add - && \ | ||
curl https://packages.microsoft.com/config/debian/10/prod.list > /etc/apt/sources.list.d/mssql-release.list && \ | ||
apt-get update && \ | ||
ACCEPT_EULA=Y apt-get install --yes unixodbc-dev msodbcsql17 | ||
|
||
# Copy sources | ||
COPY . /src | ||
|
||
# Install package | ||
RUN --mount=type=cache,id=pip,target=/root/.cache/pip \ | ||
pip install --use-pep517 --prefer-binary '/src' | ||
|
||
# Designate default program to invoke | ||
CMD ["tsperf"] | ||
|
||
# Purge /src and /tmp directories. | ||
RUN rm -rf /src /tmp/* | ||
|
||
# Copy selftest.sh to the image | ||
COPY release/oci/selftest.sh /usr/local/bin |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/bin/bash | ||
|
||
# Fail on error. | ||
set -e | ||
|
||
# Display all commands. | ||
# set -x | ||
|
||
echo "Invoking tsperf" | ||
tsperf --version |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
sut: | ||
build: ../.. | ||
dockerfile: release/oci/Dockerfile | ||
command: selftest.sh |
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