conduwuit/.github/workflows/ci.yml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

222 lines
9.4 KiB
YAML
Raw Normal View History

name: CI and Artifacts
2023-12-21 00:35:52 +00:00
on:
pull_request:
push:
branches:
- main
- dev
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
2023-12-21 00:35:52 +00:00
env:
# Required to make some things output color
TERM: ansi
# Publishing to my nix binary cache
ATTIC_TOKEN: ${{ secrets.ATTIC_TOKEN }}
# Just in case incremental is still being set to true, speeds up CI
CARGO_INCREMENTAL: 0
# Custom nix binary cache if fork is being used
ATTIC_ENDPOINT: ${{ vars.ATTIC_ENDPOINT }}
ATTIC_PUBLIC_KEY: ${{ vars.ATTIC_PUBLIC_KEY }}
2023-12-21 00:35:52 +00:00
permissions:
packages: write
contents: read
2023-12-21 00:35:52 +00:00
jobs:
2024-04-24 11:31:54 +00:00
tests:
name: Prepare and test
runs-on: ubuntu-latest
steps:
- name: Sync repository
uses: actions/checkout@v4
2024-04-24 00:22:14 +00:00
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main
- name: Enable Cachix binary cache
run: |
2024-04-24 00:22:14 +00:00
nix-env -iA cachix -f https://cachix.org/api/v1/install
cachix use crane
cachix use nix-community
2024-04-24 00:22:14 +00:00
- name: Configure Magic Nix Cache
uses: DeterminateSystems/magic-nix-cache-action@main
2024-04-24 00:22:14 +00:00
- name: Apply Nix binary cache configuration
run: |
2024-04-24 00:22:14 +00:00
sudo tee -a /etc/nix/nix.conf > /dev/null <<EOF
extra-substituters = https://nix.computer.surgery/conduit https://attic.kennel.juneis.dog/conduit https://attic.kennel.juneis.dog/conduwuit
extra-trusted-public-keys = conduit:ZGAf6P6LhNvnoJJ3Me3PRg7tlLSrPxcQ2RiE5LIppjo= conduit:Isq8FGyEC6FOXH6nD+BOeAA+bKp6X6UIbupSlGEPuOg= conduwuit:lYPVh7o1hLu1idH4Xt2QHaRa49WRGSAqzcfFd94aOTw=
EOF
2024-04-24 00:22:14 +00:00
- name: Use alternative Nix binary caches if specified
if: ${{ (env.ATTIC_ENDPOINT != '') && (env.ATTIC_PUBLIC_KEY != '') }}
run: |
sudo tee -a /etc/nix/nix.conf > /dev/null <<EOF
extra-substituters = ${{ env.ATTIC_ENDPOINT }}
extra-trusted-public-keys = ${{ env.ATTIC_PUBLIC_KEY }}
EOF
2024-04-24 00:22:14 +00:00
- name: Install and activate `direnv`
run: |
echo 'source $HOME/.nix-profile/share/nix-direnv/direnvrc' > "$HOME/.direnvrc"
nix-env -f "<nixpkgs>" -iA direnv -iA nix-direnv
direnv allow
2024-04-24 00:22:14 +00:00
- name: Update `/nix/store`
run: |
2024-04-24 00:22:14 +00:00
nix develop --command true
2024-04-24 00:22:14 +00:00
- name: Run CI tests
run: |
direnv exec . engage
2024-04-24 00:22:14 +00:00
build:
name: Build
runs-on: ubuntu-latest
2024-04-24 11:31:54 +00:00
needs: tests
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/dev'
strategy:
matrix:
2024-04-24 00:22:14 +00:00
include:
- target: aarch64-unknown-linux-musl
- target: aarch64-unknown-linux-musl-jemalloc
- target: x86_64-unknown-linux-musl
- target: x86_64-unknown-linux-musl-jemalloc
steps:
- name: Sync repository
uses: actions/checkout@v4
2024-04-24 00:22:14 +00:00
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main
- name: Enable Cachix binary cache
run: |
2024-04-24 00:22:14 +00:00
nix-env -iA cachix -f https://cachix.org/api/v1/install
cachix use crane
cachix use nix-community
2024-04-24 00:22:14 +00:00
- name: Configure Magic Nix Cache
uses: DeterminateSystems/magic-nix-cache-action@main
2024-04-24 00:22:14 +00:00
- name: Apply Nix binary cache configuration
run: |
2024-04-24 00:22:14 +00:00
sudo tee -a /etc/nix/nix.conf > /dev/null <<EOF
extra-substituters = https://nix.computer.surgery/conduit https://attic.kennel.juneis.dog/conduit https://attic.kennel.juneis.dog/conduwuit
extra-trusted-public-keys = conduit:ZGAf6P6LhNvnoJJ3Me3PRg7tlLSrPxcQ2RiE5LIppjo= conduit:Isq8FGyEC6FOXH6nD+BOeAA+bKp6X6UIbupSlGEPuOg= conduwuit:lYPVh7o1hLu1idH4Xt2QHaRa49WRGSAqzcfFd94aOTw=
EOF
2024-04-24 00:22:14 +00:00
- name: Use alternative Nix binary caches if specified
if: ${{ (env.ATTIC_ENDPOINT != '') && (env.ATTIC_PUBLIC_KEY != '') }}
run: |
sudo tee -a /etc/nix/nix.conf > /dev/null <<EOF
extra-substituters = ${{ env.ATTIC_ENDPOINT }}
extra-trusted-public-keys = ${{ env.ATTIC_PUBLIC_KEY }}
EOF
2024-04-24 00:22:14 +00:00
- name: Install and activate `direnv`
run: |
echo 'source $HOME/.nix-profile/share/nix-direnv/direnvrc' > "$HOME/.direnvrc"
nix-env -f "<nixpkgs>" -iA direnv -iA nix-direnv
direnv allow
2024-04-24 00:22:14 +00:00
- name: Update `/nix/store`
run: |
2024-04-24 00:22:14 +00:00
nix develop --command true
2024-04-24 00:22:14 +00:00
- name: Build static ${{ matrix.target }}
run: |
2024-04-24 00:22:14 +00:00
bin/nix-build-and-cache .#static-${{ matrix.target }}
mkdir -p target/release
2024-04-24 00:22:14 +00:00
cp -v -f result/bin/conduit target/release/
direnv exec . cargo deb --no-build --no-strip --output target/debian/${{ matrix.target }}.deb
2024-04-24 11:31:54 +00:00
mv target/release/conduit static-${{ matrix.target }}
2024-04-24 00:22:14 +00:00
- name: Upload static-${{ matrix.target }}
uses: actions/upload-artifact@v4
with:
name: static-${{ matrix.target }}
2024-04-24 11:31:54 +00:00
path: static-${{ matrix.target }}
if-no-files-found: error
2024-04-24 00:22:14 +00:00
- name: Upload deb ${{ matrix.target }}
uses: actions/upload-artifact@v4
with:
2024-04-24 11:31:54 +00:00
name: deb-${{ matrix.target }}
path: target/debian/${{ matrix.target }}.deb
if-no-files-found: error
2024-04-24 00:22:14 +00:00
- name: Build OCI image ${{ matrix.target }}
run: |
2024-04-24 00:22:14 +00:00
bin/nix-build-and-cache .#oci-image-${{ matrix.target }}
cp -v -f result oci-image-${{ matrix.target }}.tar.gz
2024-04-24 00:22:14 +00:00
- name: Upload OCI image ${{ matrix.target }}
uses: actions/upload-artifact@v4
with:
2024-04-24 11:31:54 +00:00
name: oci-image-${{ matrix.target }}
2024-04-24 00:22:14 +00:00
path: oci-image-${{ matrix.target }}.tar.gz
if-no-files-found: error
compression-level: 0
2024-04-24 00:22:14 +00:00
docker:
name: Publish Docker manifests
runs-on: ubuntu-latest
2024-04-24 00:22:14 +00:00
needs: build
2024-04-25 01:41:41 +00:00
if: (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/dev') && github.event_name != 'pull_request'
steps:
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
2024-04-25 01:41:41 +00:00
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
2024-04-25 01:41:41 +00:00
registry: docker.io
username: ${{ vars.DOCKER_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
2024-04-24 00:22:14 +00:00
2024-04-25 01:41:41 +00:00
- name: Download artifacts
uses: actions/download-artifact@v4
- name: Create and push manifests to GitHub and Docker Hub
2024-04-24 00:22:14 +00:00
env:
2024-04-25 01:41:41 +00:00
BRANCH_TAG: ${{ github.ref_name }}
run: |
2024-04-25 01:41:41 +00:00
mv oci-image-*/oci-image-*.tar.gz .
docker load -i oci-image-aarch64-unknown-linux-musl-jemalloc.tar.gz
docker tag $(docker images -q conduit:main) conduwuit:${{ github.sha }}-aarch64-jemalloc
docker load -i oci-image-x86_64-unknown-linux-musl-jemalloc.tar.gz
docker tag $(docker images -q conduit:main) conduwuit:${{ github.sha }}-x86_64-jemalloc
if [ "$BRANCH_TAG" == "main" ]; then
2024-04-25 01:41:41 +00:00
BRANCH_TAG="latest"
fi
2024-04-25 01:41:41 +00:00
# Creating and pushing for GitHub Container Registry
docker manifest create ghcr.io/${{ github.repository }}:${{ github.ref_name }}-${{ github.sha }} \
--amend conduwuit:${{ github.sha }}-x86_64-jemalloc \
--amend conduwuit:${{ github.sha }}-aarch64-jemalloc
docker manifest push ghcr.io/${{ github.repository }}:${{ github.ref_name }}-${{ github.sha }}
docker manifest create ghcr.io/${{ github.repository }}:$BRANCH_TAG \
--amend conduwuit:${{ github.sha }}-x86_64-jemalloc \
--amend conduwuit:${{ github.sha }}-aarch64-jemalloc
docker manifest push ghcr.io/${{ github.repository }}:$BRANCH_TAG
# Creating and pushing for Docker Hub
docker manifest create docker.io/${{ github.repository }}:${{ github.ref_name }}-${{ github.sha }} \
--amend conduwuit:${{ github.sha }}-x86_64-jemalloc \
--amend conduwuit:${{ github.sha }}-aarch64-jemalloc
docker manifest push docker.io/${{ github.repository }}:${{ github.ref_name }}-${{ github.sha }}
docker manifest create docker.io/${{ github.repository }}:$BRANCH_TAG \
--amend conduwuit:${{ github.sha }}-x86_64-jemalloc \
--amend conduwuit:${{ github.sha }}-aarch64-jemalloc
docker manifest push docker.io/${{ github.repository }}:$BRANCH_TAG