From 422e24e1d4a89f766ec76b3af9f31fe5d2b5091d Mon Sep 17 00:00:00 2001 From: asonix Date: Tue, 6 Feb 2024 20:20:35 -0600 Subject: [PATCH] Attempt to add forgjo CI --- .forgejo/workflows/check.yaml | 24 ++++ .forgejo/workflows/publish.yaml | 213 ++++++++++++++++++++++++++++++++ 2 files changed, 237 insertions(+) create mode 100644 .forgejo/workflows/check.yaml create mode 100644 .forgejo/workflows/publish.yaml diff --git a/.forgejo/workflows/check.yaml b/.forgejo/workflows/check.yaml new file mode 100644 index 00000000..f5ff237e --- /dev/null +++ b/.forgejo/workflows/check.yaml @@ -0,0 +1,24 @@ +on: + push: + pull_request: + branches: + - main + +jobs: + clippy: + runs-on: docker + container: + image: docker.io/asonix/rust-builder:latest-linux-amd64 + steps: + - uses: actions/checkout@v4 + - rustup component add clippy + - 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/asonix/rust-builder:latest-linux-amd64 + steps: + - uses: actions/checkout@v4 + - cargo test diff --git a/.forgejo/workflows/publish.yaml b/.forgejo/workflows/publish.yaml new file mode 100644 index 00000000..62a4a2df --- /dev/null +++ b/.forgejo/workflows/publish.yaml @@ -0,0 +1,213 @@ +on: [tag] + +env: + REGISTRY_IMAGE: asonix/pictrs + +jobs: + clippy: + runs-on: docker + container: + image: docker.io/asonix/rust-builder:latest-linux-amd64 + steps: + - uses: actions/checkout@v4 + - rustup component add clippy + - 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/asonix/rust-builder:latest-linux-amd64 + steps: + - uses: actions/checkout@v4 + - cargo test + + build-amd64: + needs: + - clippy + - tests + runs-on: docker + container: + image: docker.io/asonix/rust-builder:latest-linux-amd64 + steps: + - uses: actions/checkout@v4 + - cargo build --target=$TARGET --release + - mkdir artifacts + - cp target/$TARGET/release/pict-rs artifacts/pict-rs + - uses: actions/upload-artifact@v4 + with: + name: linux-amd64 + path: artifacts/ + + build-arm32v7: + needs: + - clippy + - tests + runs-on: docker + container: + image: docker.io/asonix/rust-builder:latest-linux-arm32v7 + steps: + - uses: actions/checkout@v4 + - cargo build --target=$TARGET --release + - mkdir artifacts + - cp target/$TARGET/release/pict-rs artifacts/pict-rs + - uses: actions/upload-artifact@v4 + with: + name: linux-arm32v7 + path: artifacts/ + + build-arm64v8: + needs: + - clippy + - tests + runs-on: docker + container: + image: docker.io/asonix/rust-builder:latest-linux-arm64v8 + steps: + - uses: actions/checkout@v4 + - cargo build --target=$TARGET --release + - mkdir artifacts + - cp target/$TARGET/release/pict-rs artifacts/pict-rs + - uses: actions/upload-artifact@v4 + with: + name: linux-arm64v8 + path: artifacts/ + + prepare-docker: + needs: + - build-amd64 + - build-arm32v7 + - build-arm64v8 + runs-on: docker + container: + image: docker.io/_/ubuntu:latest + strategy: + matrix: + fail-fast: false + platform: + - docker: linux/amd64 + artifact: linux-amd64 + - docker: linux/arm/v7 + artifact: linux-arm32v7 + - docker: linux/arm64 + artifact: linux-arm64v8 + steps: + - + name: Prepare + run: | + platform=${{ matrix.platform.docker }} + echo "PLATFORM_PAIR=${platform//\//-}" >> $GITHUB_ENV + + - + name: Docker meta + id: meta + uses: docker/metadata-action@v5 + with: + images: ${{ env.REGISTRY_IMAGE }} + - + name: Set up QEMU + uses: docker/setup-qemu-action@v3 + - + name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + - + name: Docker login + uses: docker/login-action@v3 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + - + name: Download binaries + uses: actions/download-artifact@v4 + with: + name: ${{ matrix.platform.artifact }} + path: artifacts/ + - + name: Build and push ${{ matrix.platform.docker }} docker image + uses: docker/build-push-action@v5 + with: + context: . + platforms: ${{ matrix.platform.docker }} + 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:}" + - + name: Upload ${{ matrix.platform.docker }} digest + uses: actions/upload-artifact@v4 + with: + name: digests + path: /tmp/digests/* + if-no-files-found: error + retention-days: 1 + + publish-docker: + runs-on: docker + container: + image: docker.io/_/ubuntu:latest + needs: + - prepare-docker + steps: + - + name: Download digests + uses: actions/download-artifact@v4 + 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 }} + + upload-release: + needs: + - build-amd64 + - build-arm32v7 + - build-arm64v8 + runs-on: docker + steps: + - uses: actions/download-artifact@v4 + - uses: actions/forgejo-release@v1 + with: + direction: upload + release-dir: artifacts/ + + publish-crate: + needs: + - build-amd64 + - build-arm32v7 + - build-arm64v8 + runs-on: docker + steps: + - run: cargo publish --token ${{ secrets.CRATES_IO_TOKEN }}