on: push: tags: - 'v*.*.*' env: REGISTRY_IMAGE: asonix/pictrs DOCKER_HOST: tcp://docker-in-docker:2375 jobs: # 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 build: # needs: # - clippy # - tests runs-on: docker container: image: docker.io/node:20-bookworm strategy: matrix: info: - target: x86_64-unknown-linux-musl artifact: linux-amd64 platform: linux/amd64 - target: armv7-unknown-linux-musleabihf artifact: linux-arm32v7 platform: linux/arm/v7 - target: aarch64-unknown-linux-musl artifact: linux-arm64v8 platform: linux/arm64 steps: - name: Checkout pict-rs uses: https://github.com/actions/checkout@v4 - name: Install Docker run: | apt-get update apt-get install -y ca-certificates curl jq 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 - name: Prepare Platform run: | platform=${{ matrix.info.platform }} echo "PLATFORM_PAIR=${platform//\//-}" >> $GITHUB_ENV shell: bash - name: Docker meta id: meta uses: https://github.com/docker/metadata-action@v5 with: images: ${{ env.REGISTRY_IMAGE }} - name: Set up QEMU uses: https://github.com/docker/setup-qemu-action@v3 - name: Set up Docker Buildx uses: https://github.com/docker/setup-buildx-action@v3 - name: Docker login uses: https://github.com/docker/login-action@v3 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - 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: https://github.com/actions/upload-artifact@v3 with: name: binaries path: artifacts/ - name: Prepare binary run: | cp target/${{ matrix.info.target }}/release/pict-rs docker/forgejo/pict-rs - name: Build and push ${{ matrix.info.platform }} docker image id: build uses: docker/build-push-action@v5 with: context: ./docker/forgejo # file: ./docker/forgejo/Dockerfile platforms: ${{ matrix.info.platform }} 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:}" echo "Created /tmp/digests/${digest#sha256:}" shell: bash - name: Upload ${{ matrix.info.platform }} digest uses: https://github.com/actions/upload-artifact@v3 with: name: digests path: /tmp/digests/* if-no-files-found: error retention-days: 1 publish-docker: runs-on: docker container: image: docker.io/node:20-bookworm needs: [build] steps: - name: Install Docker run: | apt-get update apt-get install -y ca-certificates curl jq 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 - name: Download digests uses: https://github.com/actions/download-artifact@v3 with: name: digests path: /tmp/digests pattern: digests-* merge-multiple: true - 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: Docker meta id: meta uses: https://github.com/docker/metadata-action@v5 with: images: ${{ env.REGISTRY_IMAGE }} tags: | type=semver,pattern={{version}} type=semver,pattern={{major}}.{{minor}} type=semver,pattern={{major}} - name: Create manifest list and push working-directory: /tmp/digests run: | tags=$(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") images=$(printf "${{ env.REGISTRY_IMAGE }}@sha256:%s " *) docker buildx imagetools create "${tags}" "${images}" shell: bash - name: Inspect Image run: | docker buildx imagetools inspect ${{ env.REGISTRY_IMAGE }}:${{ steps.meta.outputs.version }} publish-forgejo: needs: [build] runs-on: docker container: image: node:20-bookworm steps: - uses: https://github.com/actions/download-artifact@v3 with: name: binaries path: artifacts/ merge-multiple: true - uses: actions/forgejo-release@v1 with: direction: upload token: ${{ secrets.GITHUB_TOKEN }} release-dir: artifacts/ prerelease: true publish-crate: needs: [build] runs-on: docker container: image: 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: Publish Crate run: cargo publish --token ${{ secrets.CRATES_IO_TOKEN }}