2024-03-18 06:30:40 +01:00
|
|
|
name: CI and Artifacts
|
2023-12-21 01:35:52 +01:00
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
2024-03-17 23:54:53 +01:00
|
|
|
# Allows you to run this workflow manually from the Actions tab
|
|
|
|
workflow_dispatch:
|
|
|
|
|
2023-12-21 01:35:52 +01:00
|
|
|
env:
|
|
|
|
# Required to make some things output color
|
|
|
|
TERM: ansi
|
2024-03-17 23:54:53 +01:00
|
|
|
# Publishing to my nix binary cache
|
2024-02-15 02:26:43 +01:00
|
|
|
ATTIC_TOKEN: ${{ secrets.ATTIC_TOKEN }}
|
2024-03-17 23:54:53 +01:00
|
|
|
# Just in case incremental is still being set to true, speeds up CI
|
2024-02-26 03:48:05 +01:00
|
|
|
CARGO_INCREMENTAL: 0
|
2024-03-17 23:54:53 +01:00
|
|
|
# Custom nix binary cache if fork is being used
|
2024-03-06 04:59:21 +01:00
|
|
|
ATTIC_ENDPOINT: ${{ vars.ATTIC_ENDPOINT }}
|
|
|
|
ATTIC_PUBLIC_KEY: ${{ vars.ATTIC_PUBLIC_KEY }}
|
2024-03-23 02:50:19 +01:00
|
|
|
DOCKER_USERNAME: ${{ vars.DOCKER_USERNAME }}
|
2023-12-21 01:35:52 +01:00
|
|
|
|
2024-03-02 16:59:04 +01:00
|
|
|
permissions:
|
|
|
|
packages: write
|
2024-03-17 23:54:53 +01:00
|
|
|
contents: read
|
2024-03-02 16:59:04 +01:00
|
|
|
|
2023-12-21 01:35:52 +01:00
|
|
|
jobs:
|
|
|
|
ci:
|
2024-03-18 06:30:40 +01:00
|
|
|
name: CI and Artifacts
|
2023-12-21 01:35:52 +01:00
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Sync repository
|
2023-12-21 03:32:58 +01:00
|
|
|
uses: actions/checkout@v4
|
2023-12-21 01:35:52 +01:00
|
|
|
|
|
|
|
- name: Install Nix (with flakes and nix-command enabled)
|
2024-03-08 05:47:40 +01:00
|
|
|
uses: cachix/install-nix-action@v26
|
2023-12-21 01:35:52 +01:00
|
|
|
with:
|
|
|
|
nix_path: nixpkgs=channel:nixos-unstable
|
|
|
|
|
2024-03-06 04:59:21 +01:00
|
|
|
# Add `nix-community`, Crane, upstream Conduit, and conduwuit binary caches
|
2023-12-21 01:35:52 +01:00
|
|
|
extra_nix_config: |
|
2024-01-28 17:35:17 +01:00
|
|
|
experimental-features = nix-command flakes
|
2023-12-21 01:35:52 +01:00
|
|
|
extra-substituters = https://nix-community.cachix.org
|
|
|
|
extra-trusted-public-keys = nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=
|
2024-01-28 17:35:17 +01:00
|
|
|
extra-substituters = https://crane.cachix.org
|
|
|
|
extra-trusted-public-keys = crane.cachix.org-1:8Scfpmn9w+hGdXH/Q9tTLiYAE/2dnJYRJP7kl80GuRk=
|
|
|
|
extra-substituters = https://nix.computer.surgery/conduit
|
|
|
|
extra-trusted-public-keys = conduit:ZGAf6P6LhNvnoJJ3Me3PRg7tlLSrPxcQ2RiE5LIppjo=
|
2024-02-15 07:08:04 +01:00
|
|
|
extra-substituters = https://attic.kennel.juneis.dog/conduit
|
|
|
|
extra-trusted-public-keys = conduit:Isq8FGyEC6FOXH6nD+BOeAA+bKp6X6UIbupSlGEPuOg=
|
|
|
|
extra-substituters = https://attic.kennel.juneis.dog/conduwuit
|
|
|
|
extra-trusted-public-keys = conduwuit:lYPVh7o1hLu1idH4Xt2QHaRa49WRGSAqzcfFd94aOTw=
|
2024-03-06 04:59:21 +01:00
|
|
|
|
|
|
|
- name: Add alternative Nix binary caches if specified
|
|
|
|
if: ${{ (env.ATTIC_ENDPOINT != '') && (env.ATTIC_PUBLIC_KEY != '') }}
|
|
|
|
run: |
|
|
|
|
echo "extra-substituters = ${{ env.ATTIC_ENDPOINT }}" >> /etc/nix/nix.conf
|
|
|
|
echo "extra-trusted-public-keys = ${{ env.ATTIC_PUBLIC_KEY }}" >> /etc/nix/nix.conf
|
2023-12-21 01:35:52 +01:00
|
|
|
|
|
|
|
- name: Pop/push Magic Nix Cache
|
2024-01-26 02:11:15 +01:00
|
|
|
uses: DeterminateSystems/magic-nix-cache-action@main
|
2023-12-21 01:35:52 +01:00
|
|
|
|
|
|
|
- name: Configure `nix-direnv`
|
|
|
|
run: |
|
|
|
|
echo 'source $HOME/.nix-profile/share/nix-direnv/direnvrc' > "$HOME/.direnvrc"
|
|
|
|
|
|
|
|
- name: Install `direnv` and `nix-direnv`
|
2024-01-30 01:06:20 +01:00
|
|
|
run: nix-env -f "<nixpkgs>" -iA direnv -iA nix-direnv
|
2023-12-21 01:35:52 +01:00
|
|
|
|
|
|
|
- name: Pop/push downloaded crate cache
|
2024-01-17 17:29:21 +01:00
|
|
|
uses: actions/cache@v4
|
2023-12-21 01:35:52 +01:00
|
|
|
with:
|
|
|
|
key: downloaded-crates
|
|
|
|
path: ~/.cargo
|
|
|
|
|
|
|
|
- name: Pop/push compiled crate cache
|
2024-01-17 17:29:21 +01:00
|
|
|
uses: actions/cache@v4
|
2023-12-21 01:35:52 +01:00
|
|
|
with:
|
|
|
|
key: compiled-crates-${{runner.os}}
|
|
|
|
path: target
|
|
|
|
|
|
|
|
# Do this to shorten the logs for the real CI step
|
|
|
|
- name: Populate `/nix/store`
|
|
|
|
run: nix develop --command true
|
|
|
|
|
2024-03-06 03:42:17 +01:00
|
|
|
- name: Allow direnv
|
|
|
|
run: direnv allow
|
|
|
|
|
|
|
|
- name: Cache x86_64 inputs for devShell
|
2023-12-21 01:35:52 +01:00
|
|
|
run: |
|
2024-03-06 03:42:17 +01:00
|
|
|
./bin/nix-build-and-cache .#devShells.x86_64-linux.default.inputDerivation
|
|
|
|
|
|
|
|
|
|
|
|
- name: Perform continuous integration
|
|
|
|
run: direnv exec . engage
|
|
|
|
|
2024-01-28 17:35:17 +01:00
|
|
|
|
2024-03-06 03:42:17 +01:00
|
|
|
- name: Build static-x86_64-unknown-linux-musl and Create static deb-x86_64-unknown-linux-musl
|
2024-01-28 17:38:05 +01:00
|
|
|
run: |
|
|
|
|
./bin/nix-build-and-cache .#static-x86_64-unknown-linux-musl
|
2024-03-06 03:42:17 +01:00
|
|
|
mkdir -p target/release
|
|
|
|
cp -v -f result/bin/conduit target/release
|
|
|
|
direnv exec . cargo deb --no-build
|
2024-01-28 17:35:17 +01:00
|
|
|
|
|
|
|
- name: Upload artifact static-x86_64-unknown-linux-musl
|
|
|
|
uses: actions/upload-artifact@v4
|
|
|
|
with:
|
|
|
|
name: static-x86_64-unknown-linux-musl
|
2024-01-30 01:06:20 +01:00
|
|
|
path: result/bin/conduit
|
2024-01-28 17:35:17 +01:00
|
|
|
if-no-files-found: error
|
|
|
|
|
2024-03-06 03:42:17 +01:00
|
|
|
- name: Upload artifact deb-x86_64-unknown-linux-musl
|
|
|
|
uses: actions/upload-artifact@v4
|
|
|
|
with:
|
|
|
|
name: x86_64-unknown-linux-musl.deb
|
|
|
|
path: target/debian/*.deb
|
|
|
|
if-no-files-found: error
|
|
|
|
|
|
|
|
|
2024-01-28 17:35:17 +01:00
|
|
|
- name: Build static-aarch64-unknown-linux-musl
|
2024-01-28 17:38:05 +01:00
|
|
|
run: |
|
|
|
|
./bin/nix-build-and-cache .#static-aarch64-unknown-linux-musl
|
2024-01-28 17:35:17 +01:00
|
|
|
|
|
|
|
- name: Upload artifact static-aarch64-unknown-linux-musl
|
|
|
|
uses: actions/upload-artifact@v4
|
|
|
|
with:
|
|
|
|
name: static-aarch64-unknown-linux-musl
|
2024-01-30 01:06:20 +01:00
|
|
|
path: result/bin/conduit
|
2024-01-30 01:27:04 +01:00
|
|
|
if-no-files-found: error
|
|
|
|
|
2024-03-06 03:42:17 +01:00
|
|
|
|
2024-01-30 01:27:04 +01:00
|
|
|
- name: Build oci-image-x86_64-unknown-linux-gnu
|
|
|
|
run: |
|
|
|
|
./bin/nix-build-and-cache .#oci-image
|
2024-03-06 03:42:17 +01:00
|
|
|
cp -v -f result oci-image-amd64.tar.gz
|
2024-01-30 01:27:04 +01:00
|
|
|
|
|
|
|
- name: Upload artifact oci-image-x86_64-unknown-linux-gnu
|
|
|
|
uses: actions/upload-artifact@v4
|
|
|
|
with:
|
|
|
|
name: oci-image-x86_64-unknown-linux-gnu
|
2024-01-31 01:53:00 +01:00
|
|
|
path: oci-image-amd64.tar.gz
|
2024-03-02 16:59:04 +01:00
|
|
|
if-no-files-found: error
|
2024-01-30 01:44:46 +01:00
|
|
|
# don't compress again
|
|
|
|
compression-level: 0
|
2024-01-30 01:27:04 +01:00
|
|
|
|
2024-03-06 03:42:17 +01:00
|
|
|
|
2024-01-30 01:27:04 +01:00
|
|
|
- name: Build oci-image-aarch64-unknown-linux-musl
|
|
|
|
run: |
|
|
|
|
./bin/nix-build-and-cache .#oci-image-aarch64-unknown-linux-musl
|
2024-03-06 03:42:17 +01:00
|
|
|
cp -v -f result oci-image-arm64v8.tar.gz
|
2024-01-30 01:27:04 +01:00
|
|
|
|
|
|
|
- name: Upload artifact oci-image-aarch64-unknown-linux-musl
|
|
|
|
uses: actions/upload-artifact@v4
|
|
|
|
with:
|
|
|
|
name: oci-image-aarch64-unknown-linux-musl
|
2024-01-31 01:53:00 +01:00
|
|
|
path: oci-image-arm64v8.tar.gz
|
2024-01-30 01:44:46 +01:00
|
|
|
if-no-files-found: error
|
|
|
|
# don't compress again
|
2024-01-30 02:28:43 +01:00
|
|
|
compression-level: 0
|
|
|
|
|
2024-01-31 23:32:43 +01:00
|
|
|
|
2024-01-31 23:41:29 +01:00
|
|
|
- name: Extract metadata for Dockerhub
|
2024-01-31 23:32:43 +01:00
|
|
|
env:
|
|
|
|
REGISTRY: registry.hub.docker.com
|
|
|
|
IMAGE_NAME: ${{ github.repository }}
|
2024-01-31 23:41:29 +01:00
|
|
|
id: meta-dockerhub
|
2024-01-31 23:32:43 +01:00
|
|
|
uses: docker/metadata-action@v5
|
|
|
|
with:
|
|
|
|
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
|
|
|
|
|
|
|
|
- name: Extract metadata for GitHub Container Registry
|
|
|
|
env:
|
|
|
|
REGISTRY: ghcr.io
|
|
|
|
IMAGE_NAME: ${{ github.repository }}
|
2024-01-31 23:41:29 +01:00
|
|
|
id: meta-ghcr
|
2024-01-31 23:32:43 +01:00
|
|
|
uses: docker/metadata-action@v5
|
|
|
|
with:
|
|
|
|
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
|
|
|
|
|
2024-03-06 03:42:17 +01:00
|
|
|
|
2024-01-31 23:32:43 +01:00
|
|
|
- name: Login to Dockerhub
|
|
|
|
if: github.event_name != 'pull_request'
|
|
|
|
uses: docker/login-action@v3
|
|
|
|
with:
|
2024-03-23 02:50:19 +01:00
|
|
|
# username is not really a secret
|
|
|
|
username: ${{ vars.DOCKER_USERNAME }}
|
2024-01-31 23:32:43 +01:00
|
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
|
|
|
|
- name: Login to GitHub Container Registry
|
|
|
|
if: github.event_name != 'pull_request'
|
|
|
|
uses: docker/login-action@v3
|
|
|
|
env:
|
|
|
|
REGISTRY: ghcr.io
|
|
|
|
with:
|
|
|
|
registry: ${{ env.REGISTRY }}
|
2024-03-23 02:50:19 +01:00
|
|
|
username: ${{ github.repository_owner }}
|
2024-01-31 23:32:43 +01:00
|
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
2024-03-06 03:42:17 +01:00
|
|
|
|
2024-01-31 23:32:43 +01:00
|
|
|
- name: Publish to Dockerhub
|
2024-02-01 01:33:52 +01:00
|
|
|
if: github.event_name != 'pull_request'
|
2024-01-31 23:32:43 +01:00
|
|
|
env:
|
2024-02-01 01:09:15 +01:00
|
|
|
IMAGE_NAME: docker.io/${{ github.repository }}
|
2024-01-31 23:32:43 +01:00
|
|
|
IMAGE_SUFFIX_AMD64: amd64
|
|
|
|
IMAGE_SUFFIX_ARM64V8: arm64v8
|
|
|
|
run: |
|
|
|
|
docker load -i oci-image-amd64.tar.gz
|
2024-02-01 00:24:25 +01:00
|
|
|
IMAGE_ID_AMD64=$(docker images -q conduit:main)
|
2024-01-31 23:32:43 +01:00
|
|
|
docker load -i oci-image-arm64v8.tar.gz
|
2024-02-01 00:24:25 +01:00
|
|
|
IMAGE_ID_ARM64V8=$(docker images -q conduit:main)
|
2024-01-31 23:32:43 +01:00
|
|
|
|
|
|
|
# Tag and push the architecture specific images
|
|
|
|
docker tag $IMAGE_ID_AMD64 $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_AMD64
|
|
|
|
docker tag $IMAGE_ID_ARM64V8 $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_ARM64V8
|
|
|
|
docker push $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_AMD64
|
|
|
|
docker push $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_ARM64V8
|
|
|
|
# Tag the multi-arch image
|
|
|
|
docker manifest create $IMAGE_NAME:$GITHUB_SHA --amend $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_AMD64 --amend $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_ARM64V8
|
|
|
|
docker manifest push $IMAGE_NAME:$GITHUB_SHA
|
|
|
|
# Tag and push the git ref
|
|
|
|
docker manifest create $IMAGE_NAME:$GITHUB_REF_NAME --amend $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_AMD64 --amend $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_ARM64V8
|
|
|
|
docker manifest push $IMAGE_NAME:$GITHUB_REF_NAME
|
|
|
|
# Tag git tags as 'latest'
|
|
|
|
if [[ -n "$GITHUB_REF_NAME" ]]; then
|
|
|
|
docker manifest create $IMAGE_NAME:latest --amend $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_AMD64 --amend $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_ARM64V8
|
|
|
|
docker manifest push $IMAGE_NAME:latest
|
|
|
|
fi
|
|
|
|
|
|
|
|
- name: Publish to GitHub Container Registry
|
2024-02-01 01:33:52 +01:00
|
|
|
if: github.event_name != 'pull_request'
|
2024-01-31 23:32:43 +01:00
|
|
|
env:
|
2024-02-01 00:24:25 +01:00
|
|
|
IMAGE_NAME: ghcr.io/${{ github.repository }}
|
2024-01-31 23:32:43 +01:00
|
|
|
IMAGE_SUFFIX_AMD64: amd64
|
|
|
|
IMAGE_SUFFIX_ARM64V8: arm64v8
|
|
|
|
run: |
|
|
|
|
docker load -i oci-image-amd64.tar.gz
|
2024-02-01 00:24:25 +01:00
|
|
|
IMAGE_ID_AMD64=$(docker images -q conduit:main)
|
2024-01-31 23:32:43 +01:00
|
|
|
docker load -i oci-image-arm64v8.tar.gz
|
2024-02-01 00:24:25 +01:00
|
|
|
IMAGE_ID_ARM64V8=$(docker images -q conduit:main)
|
2024-01-31 23:32:43 +01:00
|
|
|
|
|
|
|
# Tag and push the architecture specific images
|
|
|
|
docker tag $IMAGE_ID_AMD64 $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_AMD64
|
|
|
|
docker tag $IMAGE_ID_ARM64V8 $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_ARM64V8
|
|
|
|
docker push $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_AMD64
|
|
|
|
docker push $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_ARM64V8
|
|
|
|
# Tag the multi-arch image
|
|
|
|
docker manifest create $IMAGE_NAME:$GITHUB_SHA --amend $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_AMD64 --amend $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_ARM64V8
|
|
|
|
docker manifest push $IMAGE_NAME:$GITHUB_SHA
|
|
|
|
# Tag and push the git ref
|
|
|
|
docker manifest create $IMAGE_NAME:$GITHUB_REF_NAME --amend $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_AMD64 --amend $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_ARM64V8
|
|
|
|
docker manifest push $IMAGE_NAME:$GITHUB_REF_NAME
|
|
|
|
# Tag git tags as 'latest'
|
|
|
|
if [[ -n "$GITHUB_REF_NAME" ]]; then
|
|
|
|
docker manifest create $IMAGE_NAME:latest --amend $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_AMD64 --amend $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_ARM64V8
|
|
|
|
docker manifest push $IMAGE_NAME:latest
|
2024-03-17 23:17:46 +01:00
|
|
|
fi
|