pika-debian-bleedingedge/.github/workflows/ci.yml

56 lines
1.8 KiB
YAML
Raw Normal View History

2024-03-24 18:54:30 +01:00
name: Debian base custom bleeding edge docker image for pika
2023-08-14 16:41:07 +02:00
on:
2024-03-29 12:05:12 +01:00
workflow_dispatch:
2023-08-14 16:41:07 +02:00
env:
2024-03-24 18:54:30 +01:00
IMAGE_NAME: pika-base-debian-container
2023-08-14 16:41:07 +02:00
jobs:
push:
2024-08-07 20:01:59 +02:00
runs-on: self-hosted
container:
2024-08-07 20:24:23 +02:00
image: debian:sid
2024-08-07 20:01:59 +02:00
volumes:
- /proc:/proc
2024-08-07 20:24:23 +02:00
options: --privileged -it
2023-08-14 16:41:07 +02:00
steps:
- uses: actions/checkout@v3
2024-08-07 20:24:23 +02:00
- name: Update APT Cache
run: apt-get update
- name: Get debootstrap
run: apt-get install -y debootstrap docker.io sudo
- name: Generate debootstrap tar
run: chmod +x ./debootstrap.sh && ./debootstrap.sh
- name: Import base image
2024-08-07 20:25:00 +02:00
run: docker import ./base_chroot.tgz rootfs-base-debian
2024-08-07 20:06:10 +02:00
2023-08-14 16:41:07 +02:00
- name: Build image
2024-08-07 20:21:44 +02:00
run: docker build . --file Dockerfile --tag $IMAGE_NAME --label "runnumber=${GITHUB_RUN_ID}" --security-opt seccomp=unconfined --security-opt label=disable
2023-08-14 16:41:07 +02:00
- name: Log in to registry
# This is where you will update the personal access token to GITHUB_TOKEN
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $ --password-stdin
- name: Push image
run: |
IMAGE_ID=ghcr.io/${{ github.repository_owner }}/$IMAGE_NAME
# Change all uppercase to lowercase
IMAGE_ID=$(echo $IMAGE_ID | tr '[A-Z]' '[a-z]')
# Strip git ref prefix from version
VERSION=$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,')
# Strip "v" prefix from tag name
[[ "${{ github.ref }}" == "refs/tags/"* ]] && VERSION=$(echo $VERSION | sed -e 's/^v//')
# Use Docker `latest` tag convention
2024-08-07 20:01:59 +02:00
VERSION="v3lto"
2023-08-14 16:41:07 +02:00
echo IMAGE_ID=$IMAGE_ID
echo VERSION=$VERSION
docker tag $IMAGE_NAME $IMAGE_ID:$VERSION
2024-01-12 14:43:53 +01:00
docker push $IMAGE_ID:$VERSION