pict-rs/.forgejo/workflows/publish.yaml

225 lines
6.8 KiB
YAML
Raw Normal View History

2024-02-08 02:22:02 +00:00
on:
push:
tags:
- 'v*.*.*'
2024-02-07 02:20:35 +00:00
env:
REGISTRY_IMAGE: asonix/pictrs
2024-02-08 03:52:59 +00:00
DOCKER_HOST: tcp://docker-in-docker:2375
2024-02-07 02:20:35 +00:00
jobs:
2024-02-08 03:14:56 +00:00
# clippy:
# runs-on: docker
# container:
# image: docker.io/node:20-bookworm
# steps:
# -
# name: Checkout pict-rs
# uses: https://github.com/actions/checkout@v4
# -
# name: Setup Rust
# uses: https://git.asonix.dog/asonix/pict-rs/.forgejo/actions/prepare-rust@main
# -
# name: Clippy
# run: |
# cargo clippy --no-default-features -- -D warnings
# cargo clippy --no-default-features --features io-uring -- -D warnings
# tests:
# runs-on: docker
# container:
# image: docker.io/node:20-bookworm
# steps:
# -
# name: Checkout pict-rs
# uses: https://github.com/actions/checkout@v4
# -
# name: Setup Rust
# uses: https://git.asonix.dog/asonix/pict-rs/.forgejo/actions/prepare-rust@main
# -
# name: Test
# run: cargo test
2024-02-07 02:20:35 +00:00
2024-02-08 03:14:56 +00:00
build:
# needs:
# - clippy
# - tests
2024-02-07 02:20:35 +00:00
runs-on: docker
container:
2024-02-08 02:10:12 +00:00
image: docker.io/node:20-bookworm
2024-02-07 02:49:39 +00:00
strategy:
matrix:
2024-02-08 03:12:24 +00:00
info:
2024-02-08 02:28:20 +00:00
- target: x86_64-unknown-linux-musl
artifact: linux-amd64
platform: linux/amd64
2024-02-08 02:10:12 +00:00
- target: armv7-unknown-linux-musleabihf
artifact: linux-arm32v7
platform: linux/arm/v7
2024-02-08 02:28:20 +00:00
- target: aarch64-unknown-linux-musl
artifact: linux-arm64v8
platform: linux/arm64
2024-02-07 02:20:35 +00:00
steps:
2024-02-08 02:10:12 +00:00
-
name: Checkout pict-rs
uses: https://github.com/actions/checkout@v4
2024-02-08 03:42:15 +00:00
-
2024-02-08 03:50:04 +00:00
name: Install Docker
run: |
apt-get update
apt-get install -y ca-certificates curl
install -m 0755 -d /etc/apt/keyrings
curl -fsSL https://download.docker.com/linux/debian/gpg -o /etc/apt/keyrings/docker.asc
chmod a+r /etc/apt/keyrings/docker.asc
echo \
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/debian \
$(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \
tee /etc/apt/sources.list.d/docker.list > /dev/null
apt-get update
apt-get install -y docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
2024-02-07 02:20:35 +00:00
-
name: Prepare Platform
2024-02-07 02:20:35 +00:00
run: |
2024-02-08 03:31:25 +00:00
bash -c 'platform=${{ matrix.info.platform }} echo "PLATFORM_PAIR=${platform//\//-}" >> $GITHUB_ENV'
2024-02-07 02:20:35 +00:00
-
name: Docker meta
id: meta
uses: https://github.com/docker/metadata-action@v5
2024-02-07 02:20:35 +00:00
with:
images: ${{ env.REGISTRY_IMAGE }}
-
name: Set up QEMU
uses: https://github.com/docker/setup-qemu-action@v3
2024-02-07 02:20:35 +00:00
-
name: Set up Docker Buildx
uses: https://github.com/docker/setup-buildx-action@v3
2024-02-07 02:20:35 +00:00
-
name: Docker login
uses: https://github.com/docker/login-action@v3
2024-02-07 02:20:35 +00:00
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
2024-02-08 03:31:25 +00:00
-
name: Setup Rust
uses: https://git.asonix.dog/asonix/pict-rs/.forgejo/actions/prepare-rust@main
with:
targets: |
["x86_64-unknown-linux-musl",
"armv7-unknown-linux-musleabihf",
"aarch64-unknown-linux-musl"]
-
name: Compile pict-rs
run: cargo zigbuild --target ${{ matrix.info.target }} --release
-
name: Prepare artifacts
run: |
mkdir artifacts
cp target/${{ matrix.info.target }}/release/pict-rs artifacts/pict-rs-${{ matrix.info.artifact }}
-
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.info.artifact }}
path: artifacts/
-
name: Prepare binary
2024-02-08 03:12:24 +00:00
run: cp target/${{ matrix.info.target }}/release/pict-rs docker/forgejo/pict-rs
2024-02-07 02:20:35 +00:00
-
2024-02-08 03:12:24 +00:00
name: Build and push ${{ matrix.info.platform }} docker image
2024-02-07 02:20:35 +00:00
uses: docker/build-push-action@v5
with:
2024-02-07 19:52:21 +00:00
context: ./docker/forgejo"
2024-02-08 03:12:24 +00:00
platforms: ${{ matrix.info.platform }}
2024-02-07 02:20:35 +00:00
labels: ${{ steps.meta.outputs.labels }}
outputs: type=image,name=${{ env.REGISTRY_IMAGE }},push-by-digest=true,name-canonical=true,push=true
-
name: Export digest
run: |
mkdir -p /tmp/digests
digest="${{ steps.build.outputs.digest }}"
touch "/tmp/digests/${digest#sha256:}"
-
2024-02-08 03:12:24 +00:00
name: Upload ${{ matrix.info.platform }} digest
uses: actions/upload-artifact@v3
2024-02-07 02:20:35 +00:00
with:
name: digests
path: /tmp/digests/*
if-no-files-found: error
retention-days: 1
publish-docker:
runs-on: docker
container:
2024-02-08 02:10:12 +00:00
image: docker.io/node:20-bookworm
needs: [build]
2024-02-07 02:20:35 +00:00
steps:
-
name: Download digests
uses: actions/download-artifact@v3
2024-02-07 02:20:35 +00:00
with:
name: digests
path: /tmp/digests
pattern: digests-*
merge-multiple: true
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
-
name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY_IMAGE }}
tags: |
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
-
name: Docker login
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Create manifest list and push
working-directory: /tmp/digests
run: |
docker buildx imagetools create $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \
$(printf '${{ env.REGISTRY_IMAGE }}@sha256:%s ' *)
-
name: Inspect Image
run: |
docker buildx imagetools inspect ${{ env.REGISTRY_IMAGE }}:${{ steps.meta.outputs.version }}
publish-forgejo:
2024-02-08 02:10:12 +00:00
needs: [build]
2024-02-07 02:20:35 +00:00
runs-on: docker
steps:
- uses: actions/download-artifact@v3
2024-02-08 02:10:12 +00:00
with:
name: arm64v8
path: artifacts/
- uses: actions/download-artifact@v3
2024-02-08 02:10:12 +00:00
with:
name: arm32v7
path: artifacts/
- uses: actions/download-artifact@v3
2024-02-08 02:10:12 +00:00
with:
name: arm64v8
path: artifacts/
2024-02-07 02:20:35 +00:00
- uses: actions/forgejo-release@v1
with:
direction: upload
release-dir: artifacts/
2024-02-08 02:10:12 +00:00
prerelease: true
2024-02-07 02:20:35 +00:00
publish-crate:
2024-02-08 02:30:07 +00:00
needs: [build]
2024-02-07 02:20:35 +00:00
runs-on: docker
steps:
2024-02-08 02:30:07 +00:00
-
name: Setup Rust
uses: https://git.asonix.dog/asonix/pict-rs/.forgejo/actions/prepare-rust@main
-
name: Publish Crate
run: cargo publish --token ${{ secrets.CRATES_IO_TOKEN }}