2024-01-28 16:35:17 +00:00
|
|
|
name: CI and Artifacts
|
2023-12-21 00:35:52 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
2024-01-31 22:41:29 +00:00
|
|
|
- registry-pushes
|
2023-12-21 00:35:52 +00:00
|
|
|
|
|
|
|
env:
|
|
|
|
# Required to make some things output color
|
|
|
|
TERM: ansi
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
ci:
|
2024-01-28 16:35:17 +00:00
|
|
|
name: CI and Artifacts
|
2023-12-21 00:35:52 +00:00
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Sync repository
|
2023-12-21 02:32:58 +00:00
|
|
|
uses: actions/checkout@v4
|
2023-12-21 00:35:52 +00:00
|
|
|
|
|
|
|
- name: Install Nix (with flakes and nix-command enabled)
|
2024-01-13 00:27:02 +00:00
|
|
|
uses: cachix/install-nix-action@v25
|
2023-12-21 00:35:52 +00:00
|
|
|
with:
|
|
|
|
nix_path: nixpkgs=channel:nixos-unstable
|
|
|
|
|
|
|
|
# Add the `nix-community` cachix to speed up things that leverage it
|
|
|
|
extra_nix_config: |
|
2024-01-28 16:35:17 +00:00
|
|
|
experimental-features = nix-command flakes
|
2023-12-21 00:35:52 +00:00
|
|
|
extra-substituters = https://nix-community.cachix.org
|
|
|
|
extra-trusted-public-keys = nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=
|
2024-01-28 16:35:17 +00: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=
|
2023-12-21 00:35:52 +00:00
|
|
|
|
|
|
|
- name: Pop/push Magic Nix Cache
|
2024-01-26 01:11:15 +00:00
|
|
|
uses: DeterminateSystems/magic-nix-cache-action@main
|
2023-12-21 00:35:52 +00: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 00:06:20 +00:00
|
|
|
run: nix-env -f "<nixpkgs>" -iA direnv -iA nix-direnv
|
2023-12-21 00:35:52 +00:00
|
|
|
|
|
|
|
- name: Pop/push downloaded crate cache
|
2024-01-17 16:29:21 +00:00
|
|
|
uses: actions/cache@v4
|
2023-12-21 00:35:52 +00:00
|
|
|
with:
|
|
|
|
key: downloaded-crates
|
|
|
|
path: ~/.cargo
|
|
|
|
|
|
|
|
- name: Pop/push compiled crate cache
|
2024-01-17 16:29:21 +00:00
|
|
|
uses: actions/cache@v4
|
2023-12-21 00:35:52 +00: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
|
|
|
|
|
|
|
|
- name: Perform continuous integration
|
|
|
|
run: |
|
|
|
|
direnv allow
|
|
|
|
direnv exec . engage
|
2024-01-28 16:35:17 +00:00
|
|
|
|
|
|
|
- name: Build static-x86_64-unknown-linux-musl
|
2024-01-28 16:38:05 +00:00
|
|
|
run: |
|
|
|
|
./bin/nix-build-and-cache .#static-x86_64-unknown-linux-musl
|
2024-01-28 16:35:17 +00: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 00:06:20 +00:00
|
|
|
path: result/bin/conduit
|
2024-01-28 16:35:17 +00:00
|
|
|
if-no-files-found: error
|
|
|
|
|
|
|
|
- name: Build static-aarch64-unknown-linux-musl
|
2024-01-28 16:38:05 +00:00
|
|
|
run: |
|
|
|
|
./bin/nix-build-and-cache .#static-aarch64-unknown-linux-musl
|
2024-01-28 16:35:17 +00:00
|
|
|
|
|
|
|
- name: Upload artifact static-aarch64-unknown-linux-musl
|
|
|
|
uses: actions/upload-artifact@v4
|
|
|
|
with:
|
|
|
|
name: static-aarch64-unknown-linux-musl
|
2024-01-30 00:06:20 +00:00
|
|
|
path: result/bin/conduit
|
2024-01-30 00:27:04 +00:00
|
|
|
if-no-files-found: error
|
|
|
|
|
|
|
|
- name: Build oci-image-x86_64-unknown-linux-gnu
|
|
|
|
run: |
|
|
|
|
./bin/nix-build-and-cache .#oci-image
|
2024-01-31 00:53:00 +00:00
|
|
|
cp -f result oci-image-amd64.tar.gz
|
2024-01-30 00:27:04 +00: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 00:53:00 +00:00
|
|
|
path: oci-image-amd64.tar.gz
|
2024-01-30 00:44:46 +00:00
|
|
|
# don't compress again
|
|
|
|
compression-level: 0
|
2024-01-30 00:27:04 +00:00
|
|
|
|
|
|
|
- name: Build oci-image-aarch64-unknown-linux-musl
|
|
|
|
run: |
|
|
|
|
./bin/nix-build-and-cache .#oci-image-aarch64-unknown-linux-musl
|
2024-01-31 00:53:00 +00:00
|
|
|
cp -f result oci-image-arm64v8.tar.gz
|
2024-01-30 00:27:04 +00: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 00:53:00 +00:00
|
|
|
path: oci-image-arm64v8.tar.gz
|
2024-01-30 00:44:46 +00:00
|
|
|
if-no-files-found: error
|
|
|
|
# don't compress again
|
2024-01-30 01:28:43 +00:00
|
|
|
compression-level: 0
|
|
|
|
|
|
|
|
- name: Build deb-x86_64-unknown-linux-gnu
|
|
|
|
run: |
|
|
|
|
sudo apt-get update && sudo apt-get install -y --no-install-recommends libclang-dev
|
|
|
|
cargo install cargo-deb
|
|
|
|
cargo deb
|
|
|
|
|
|
|
|
- name: Upload artifact deb-x86_64-unknown-linux-gnu
|
|
|
|
uses: actions/upload-artifact@v4
|
|
|
|
with:
|
|
|
|
name: deb-x86_64-unknown-linux-gnu
|
|
|
|
path: target/debian/*.deb
|
2024-01-30 01:32:55 +00:00
|
|
|
if-no-files-found: error
|
2024-01-31 22:32:43 +00:00
|
|
|
|
2024-01-31 22:41:29 +00:00
|
|
|
- name: Extract metadata for Dockerhub
|
2024-01-31 22:32:43 +00:00
|
|
|
env:
|
|
|
|
REGISTRY: registry.hub.docker.com
|
|
|
|
IMAGE_NAME: ${{ github.repository }}
|
2024-01-31 22:41:29 +00:00
|
|
|
id: meta-dockerhub
|
2024-01-31 22:32:43 +00: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 22:41:29 +00:00
|
|
|
id: meta-ghcr
|
2024-01-31 22:32:43 +00:00
|
|
|
uses: docker/metadata-action@v5
|
|
|
|
with:
|
|
|
|
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
|
|
|
|
|
|
|
|
- name: Login to Dockerhub
|
|
|
|
if: github.event_name != 'pull_request'
|
|
|
|
uses: docker/login-action@v3
|
|
|
|
with:
|
2024-01-31 23:03:04 +00:00
|
|
|
username: girlbossceo
|
2024-01-31 22:32:43 +00: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-01-31 23:03:04 +00:00
|
|
|
username: girlbossceo
|
2024-01-31 22:32:43 +00:00
|
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
|
|
|
- name: Publish to Dockerhub
|
|
|
|
env:
|
2024-02-01 00:09:15 +00:00
|
|
|
IMAGE_NAME: docker.io/${{ github.repository }}
|
2024-01-31 22:32:43 +00:00
|
|
|
IMAGE_SUFFIX_AMD64: amd64
|
|
|
|
IMAGE_SUFFIX_ARM64V8: arm64v8
|
|
|
|
run: |
|
|
|
|
docker load -i oci-image-amd64.tar.gz
|
2024-01-31 23:24:25 +00:00
|
|
|
IMAGE_ID_AMD64=$(docker images -q conduit:main)
|
2024-01-31 22:32:43 +00:00
|
|
|
docker load -i oci-image-arm64v8.tar.gz
|
2024-01-31 23:24:25 +00:00
|
|
|
IMAGE_ID_ARM64V8=$(docker images -q conduit:main)
|
2024-01-31 22:32:43 +00: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
|
|
|
|
env:
|
2024-01-31 23:24:25 +00:00
|
|
|
IMAGE_NAME: ghcr.io/${{ github.repository }}
|
2024-01-31 22:32:43 +00:00
|
|
|
IMAGE_SUFFIX_AMD64: amd64
|
|
|
|
IMAGE_SUFFIX_ARM64V8: arm64v8
|
|
|
|
run: |
|
|
|
|
docker load -i oci-image-amd64.tar.gz
|
2024-01-31 23:24:25 +00:00
|
|
|
IMAGE_ID_AMD64=$(docker images -q conduit:main)
|
2024-01-31 22:32:43 +00:00
|
|
|
docker load -i oci-image-arm64v8.tar.gz
|
2024-01-31 23:24:25 +00:00
|
|
|
IMAGE_ID_ARM64V8=$(docker images -q conduit:main)
|
2024-01-31 22:32:43 +00: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
|