2025-04-16 00:38:58 +02:00
name : CI and Artifacts
on :
pull_request :
push :
paths-ignore :
- '.gitlab-ci.yml'
- '.gitignore'
- 'renovate.json'
- 'debian/**'
- 'docker/**'
branches :
- main
tags :
- '*'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch :
concurrency :
group : ${{ github.head_ref || github.ref_name }}
cancel-in-progress : true
env :
# Required to make some things output color
TERM : ansi
# Publishing to my nix binary cache
ATTIC_TOKEN : ${{ secrets.ATTIC_TOKEN }}
# conduwuit.cachix.org
CACHIX_AUTH_TOKEN : ${{ secrets.CACHIX_AUTH_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 }}
# Get error output from nix that we can actually use, and use our binary caches for the earlier CI steps
NIX_CONFIG : |
show-trace = true
extra-substituters = https://attic.kennel.juneis.dog/conduwuit https://attic.kennel.juneis.dog/conduit https://conduwuit.cachix.org https://aseipp-nix-cache.freetls.fastly.net https://nix-community.cachix.org https://crane.cachix.org
extra-trusted-public-keys = conduit:eEKoUwlQGDdYmAI/Q/0slVlegqh/QmAvQd7HBSm21Wk= conduwuit:BbycGUgTISsltcmH0qNjFR9dbrQNYgdIAcmViSGoVTE= conduwuit.cachix.org-1:MFRm6jcnfTf0jSAbmvLfhO3KBMt4px+1xaereWXp8Xg= nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs= crane.cachix.org-1:8Scfpmn9w+hGdXH/Q9tTLiYAE/2dnJYRJP7kl80GuRk=
experimental-features = nix-command flakes
extra-experimental-features = nix-command flakes
accept-flake-config = true
WEB_UPLOAD_SSH_USERNAME : ${{ secrets.WEB_UPLOAD_SSH_USERNAME }}
GH_REF_NAME : ${{ github.ref_name }}
WEBSERVER_DIR_NAME : ${{ (github.head_ref != '' && format('merge-{0}-{1}', github.event.number, github.event.pull_request.user.login)) || github.ref_name }}-${{ github.sha }}
2025-04-21 05:47:13 +02:00
DOCKER_HOST : "tcp://docker:2375"
DOCKER_TLS_CERTDIR : ""
2025-04-16 00:38:58 +02:00
permissions : {}
jobs :
2025-04-21 05:47:13 +02:00
dind-test :
name : dind-${{ matrix.runner }}
strategy :
matrix :
runner :
- jade
- tom
- ubuntu-22.04
runs-on : ${{ matrix.runner }}
services :
dind :
env :
DOCKER_HOST : unix:///var/run/dind.socket
DOCKER_TLS_CERTDIR : ""
image : docker:dind
options : >-
--tty
--restart always
steps :
- name : curl
run : |-
sleep 30
curl dind:2375 || true
2025-04-16 00:38:58 +02:00
tests :
name : Test
2025-04-21 05:47:13 +02:00
runs-on : [ tom, nix]
2025-04-16 01:23:55 +02:00
container :
2025-04-27 23:00:46 +02:00
image : catthehacker/ubuntu:rust-latest
2025-04-16 01:23:55 +02:00
volumes :
2025-04-19 03:58:53 +02:00
- /nix/store:/nix/store
- /nix/var/nix/db:/nix/var/nix/db
2025-04-16 00:38:58 +02:00
steps :
- name : Setup SSH web publish
env :
web_upload_ssh_private_key : ${{ secrets.WEB_UPLOAD_SSH_PRIVATE_KEY }}
if : (startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main' || (github.event.pull_request.draft != true)) && (env.web_upload_ssh_private_key != '') && github.event.pull_request.user.login != 'renovate[bot]'
run : |
mkdir -p -v ~/.ssh
echo "${{ secrets.WEB_UPLOAD_SSH_KNOWN_HOSTS }}" >> ~/.ssh/known_hosts
echo "${{ secrets.WEB_UPLOAD_SSH_PRIVATE_KEY }}" >> ~/.ssh/id_ed25519
chmod 600 ~/.ssh/id_ed25519
cat >>~/.ssh/config <<END
Host website
HostName ${{ secrets.WEB_UPLOAD_SSH_HOSTNAME }}
User ${{ secrets.WEB_UPLOAD_SSH_USERNAME }}
IdentityFile ~/.ssh/id_ed25519
StrictHostKeyChecking yes
AddKeysToAgent no
ForwardX11 no
BatchMode yes
END
echo "Checking connection"
ssh -q website "echo test" || ssh -q website "echo test"
echo "Creating commit rev directory on web server"
ssh -q website "rm -rf /var/www/girlboss.ceo/~strawberry/conduwuit/ci-bins/${WEBSERVER_DIR_NAME}/" || ssh -q website "rm -rf /var/www/girlboss.ceo/~strawberry/conduwuit/ci-bins/${WEBSERVER_DIR_NAME}/"
ssh -q website "mkdir -v /var/www/girlboss.ceo/~strawberry/conduwuit/ci-bins/${WEBSERVER_DIR_NAME}/" || ssh -q website "mkdir -v /var/www/girlboss.ceo/~strawberry/conduwuit/ci-bins/${WEBSERVER_DIR_NAME}/"
echo "SSH_WEBSITE=1" >> "$GITHUB_ENV"
- name : Sync repository
uses : actions/checkout@v4
with :
persist-credentials : false
- name : Tag comparison check
if : ${{ startsWith(github.ref, 'refs/tags/v') && !endsWith(github.ref, '-rc') }}
run : |
# Tag mismatch with latest repo tag check to prevent potential downgrades
LATEST_TAG=$(git describe --tags `git rev-list --tags --max-count=1`)
if [ ${LATEST_TAG} != ${GH_REF_NAME} ]; then
echo '# WARNING: Attempting to run this workflow for a tag that is not the latest repo tag. Aborting.'
echo '# WARNING: Attempting to run this workflow for a tag that is not the latest repo tag. Aborting.' >> $GITHUB_STEP_SUMMARY
exit 1
fi
- uses : https://github.com/cachix/install-nix-action@v31.1.0
- name : Nom
2025-04-16 01:23:55 +02:00
if : ${{ env.ACT_EXEC }}
2025-04-16 00:38:58 +02:00
run : |
2025-04-21 05:47:13 +02:00
echo "Installing nix output monitor"
nix profile install nixpkgs#nix-output-monitor -Lv
2025-04-16 00:38:58 +02:00
sudo cp $(which nom) /usr/bin/nom-nix
file $(which nom)
lsblk
- name : Prepare build environment
2025-04-19 06:00:29 +02:00
shell : bash
2025-04-16 00:38:58 +02:00
run : |
2025-04-19 06:00:29 +02:00
echo $SHELL
2025-04-19 03:58:53 +02:00
df -h /nix/var/nix/db
2025-04-19 06:00:29 +02:00
du -had 1 /nix/
if ! type nom &> /dev/null; then
2025-04-16 00:38:58 +02:00
sudo cp $(which nix) /usr/bin/nom-or-nix
fi
echo 'source $HOME/.nix-profile/share/nix-direnv/direnvrc' > "$HOME/.direnvrc"
2025-04-21 05:47:13 +02:00
nix profile install -v --inputs-from . nixpkgs#direnv nixpkgs#nix-direnv nixpkgs#nodejs nixpkgs#iproute2 nixpkgs#nettools nixpkgs#bind
ip a
2025-04-16 00:38:58 +02:00
direnv allow
2025-04-16 01:23:55 +02:00
2025-04-19 06:00:29 +02:00
if type nom &> /dev/null; then
2025-04-16 01:23:55 +02:00
nom develop .#all-features --command true
else
nix develop .#all-features --command true
fi
2025-04-16 00:38:58 +02:00
- name : Cache CI dependencies
run : |
bin/nix-build-and-cache ci
bin/nix-build-and-cache just '.#devShells.x86_64-linux.default'
bin/nix-build-and-cache just '.#devShells.x86_64-linux.all-features'
bin/nix-build-and-cache just '.#devShells.x86_64-linux.dynamic'
# use rust-cache
- uses : https://github.com/Swatinem/rust-cache@v2
# we want a fresh-state when we do releases/tags to avoid potential cache poisoning attacks impacting
# releases and tags
#if: ${{ !startsWith(github.ref, 'refs/tags/') }}
with :
cache-all-crates : "true"
cache-on-failure : "true"
cache-targets : "true"
- name : Run CI tests
2025-04-19 06:00:29 +02:00
shell : bash
2025-04-16 00:38:58 +02:00
env :
CARGO_PROFILE : "test"
run : |
direnv exec . engage > >(tee -a test_output.log)
2025-04-21 05:47:13 +02:00
- name : Build complement image
run : |
bin/nix-build-and-cache just .#complement
2025-04-27 23:00:46 +02:00
cp -v -f result complement_oci_image.tar.gz
- name : Upload Complement OCI image
uses : https://data.forgejo.org/forgejo/upload-artifact@v4
env :
with :
name : complement_oci_image.tar.gz
path : complement_oci_image.tar.gz
if-no-files-found : error
compression-level : 0
complement :
name : complement
runs-on : [ tom, nix]
needs : tests
services :
dind :
image : docker:dind
options : >-
--privileged
env :
DOCKER_TLS_CERTDIR : ""
DOCKER_HOST : unix:///var/run/dind.socket
container :
image : catthehacker/ubuntu:act-latest
volumes :
- /nix/store:/nix/store
- /nix/var/nix/db:/nix/var/nix/db
steps :
- name : Sync repository
uses : actions/checkout@v4
with :
persist-credentials : false
- uses : https://github.com/cachix/install-nix-action@v31.1.0
- name : Prepare build environment
shell : bash
run : |
echo $SHELL
df -h /nix/var/nix/db
du -had 1 /nix/
if ! type nom &> /dev/null; then
sudo cp $(which nix) /usr/bin/nom-or-nix
fi
echo 'source $HOME/.nix-profile/share/nix-direnv/direnvrc' > "$HOME/.direnvrc"
nix profile install -v --inputs-from . nixpkgs#direnv nixpkgs#nix-direnv nixpkgs#nodejs nixpkgs#iproute2 nixpkgs#nettools nixpkgs#bind
ip a
direnv allow
if type nom &> /dev/null; then
nom develop .#all-features --command true
else
nix develop .#all-features --command true
fi
- name : Download artifacts
uses : https://data.forgejo.org/forgejo/download-artifact@v4
with :
pattern : "complement_oci_image.tar.gz"
2025-04-21 05:47:13 +02:00
2025-04-16 00:38:58 +02:00
- name : Run Complement tests
2025-04-19 06:18:19 +02:00
shell : bash
2025-04-16 00:38:58 +02:00
env :
2025-04-21 05:47:13 +02:00
DOCKER_HOST : tcp://dind:2375
2025-04-16 00:38:58 +02:00
CARGO_PROFILE : "test"
run : |
2025-04-21 05:47:13 +02:00
addr=$(ip -brief address show eth0 | awk '{print $3}' | awk -F/ '{print $1}')
export COMPLEMENT_HS_PORT_BINDING_IP=$(dig +short dind)
export COMPLEMENT_HOSTNAME_RUNNING_COMPLEMENT=dind
2025-04-16 00:38:58 +02:00
# the nix devshell sets $COMPLEMENT_SRC, so "/dev/null" is no-op
direnv exec . bin/complement "/dev/null" complement_test_logs.jsonl complement_test_results.jsonl > >(tee -a test_output.log)
2025-04-21 05:47:13 +02:00
netstat -tnlp
2025-04-16 00:38:58 +02:00
- name : Upload Complement logs
2025-04-27 23:00:46 +02:00
uses : https://data.forgejo.org/forgejo/upload-artifact@v4
2025-04-16 00:38:58 +02:00
with :
name : complement_test_logs.jsonl
path : complement_test_logs.jsonl
if-no-files-found : error
- name : Upload Complement results
2025-04-27 23:00:46 +02:00
uses : https://data.forgejo.org/forgejo/upload-artifact@v4
2025-04-16 00:38:58 +02:00
with :
name : complement_test_results.jsonl
path : complement_test_results.jsonl
if-no-files-found : error
- name : Diff Complement results with checked-in repo results
2025-04-27 23:00:46 +02:00
shell : bash
2025-04-16 00:38:58 +02:00
run : |
diff -u --color=always tests/test_results/complement/test_results.jsonl complement_test_results.jsonl > >(tee -a complement_diff_output.log)
- name : Update Job Summary
2025-04-27 23:00:46 +02:00
shell : bash
2025-04-16 00:38:58 +02:00
env :
GH_JOB_STATUS : ${{ job.status }}
if : success() || failure()
run : |
if [ ${GH_JOB_STATUS} == 'success' ]; then
echo '# ✅ CI completed suwuccessfully' >> $GITHUB_STEP_SUMMARY
else
echo '# ❌ CI failed (last 100 lines of output)' >> $GITHUB_STEP_SUMMARY
echo '```' >> $GITHUB_STEP_SUMMARY
tail -n 100 test_output.log | sed 's/\x1b\[[0-9;]*m//g' >> $GITHUB_STEP_SUMMARY
echo '```' >> $GITHUB_STEP_SUMMARY
echo '# Complement diff results (last 100 lines)' >> $GITHUB_STEP_SUMMARY
echo '```diff' >> $GITHUB_STEP_SUMMARY
tail -n 100 complement_diff_output.log | sed 's/\x1b\[[0-9;]*m//g' >> $GITHUB_STEP_SUMMARY
echo '```' >> $GITHUB_STEP_SUMMARY
fi
build :
name : Build
2025-04-21 05:47:13 +02:00
runs-on : [ tom, nix]
2025-04-16 01:23:55 +02:00
container :
2025-04-19 05:16:42 +02:00
image : catthehacker/ubuntu:js-latest
2025-04-16 01:23:55 +02:00
volumes :
- /nix/store:/nix/store
- /nix/var/nix/db:/nix/var/nix/db
2025-04-16 00:38:58 +02:00
strategy :
matrix :
include :
- target : aarch64-linux-musl
- target : x86_64-linux-musl
steps :
- name : Sync repository
uses : actions/checkout@v4
with :
persist-credentials : false
#- uses: nixbuild/nix-quick-install-action@master
- uses : https://github.com/cachix/install-nix-action@v31.1.0
- name : Setup SSH web publish
env :
web_upload_ssh_private_key : ${{ secrets.WEB_UPLOAD_SSH_PRIVATE_KEY }}
if : (startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main' || (github.event.pull_request.draft != true)) && (env.web_upload_ssh_private_key != '') && github.event.pull_request.user.login != 'renovate[bot]'
run : |
mkdir -p -v ~/.ssh
echo "${{ secrets.WEB_UPLOAD_SSH_KNOWN_HOSTS }}" >> ~/.ssh/known_hosts
echo "${{ secrets.WEB_UPLOAD_SSH_PRIVATE_KEY }}" >> ~/.ssh/id_ed25519
chmod 600 ~/.ssh/id_ed25519
cat >>~/.ssh/config <<END
Host website
HostName ${{ secrets.WEB_UPLOAD_SSH_HOSTNAME }}
User ${{ secrets.WEB_UPLOAD_SSH_USERNAME }}
IdentityFile ~/.ssh/id_ed25519
StrictHostKeyChecking yes
AddKeysToAgent no
ForwardX11 no
BatchMode yes
END
echo "Checking connection"
ssh -q website "echo test" || ssh -q website "echo test"
echo "SSH_WEBSITE=1" >> "$GITHUB_ENV"
- name : Prepare build environment
run : |
echo 'source $HOME/.nix-profile/share/nix-direnv/direnvrc' > "$HOME/.direnvrc"
nix profile install --impure --inputs-from . nixpkgs#direnv nixpkgs#nix-direnv
direnv allow
nix develop .#all-features --command true --impure
# use rust-cache
- uses : https://github.com/Swatinem/rust-cache@v2
# we want a fresh-state when we do releases/tags to avoid potential cache poisoning attacks impacting
# releases and tags
#if: ${{ !startsWith(github.ref, 'refs/tags/') }}
with :
cache-all-crates : "true"
cache-on-failure : "true"
cache-targets : "true"
- name : Build static ${{ matrix.target }}-all-features
2025-04-19 06:00:29 +02:00
shell : bash
2025-04-16 00:38:58 +02:00
run : |
if [[ ${{ matrix.target }} == "x86_64-linux-musl" ]]
then
CARGO_DEB_TARGET_TUPLE="x86_64-unknown-linux-musl"
elif [[ ${{ matrix.target }} == "aarch64-linux-musl" ]]
then
CARGO_DEB_TARGET_TUPLE="aarch64-unknown-linux-musl"
fi
SOURCE_DATE_EPOCH=$(git log -1 --pretty=%ct)
bin/nix-build-and-cache just .#static-${{ matrix.target }}-all-features
mkdir -v -p target/release/
mkdir -v -p target/$CARGO_DEB_TARGET_TUPLE/release/
cp -v -f result/bin/conduwuit target/release/conduwuit
cp -v -f result/bin/conduwuit target/$CARGO_DEB_TARGET_TUPLE/release/conduwuit
direnv exec . cargo deb --verbose --no-build --no-strip -p conduwuit --target=$CARGO_DEB_TARGET_TUPLE --output target/release/${{ matrix.target }}.deb
mv -v target/release/conduwuit static-${{ matrix.target }}
mv -v target/release/${{ matrix.target }}.deb ${{ matrix.target }}.deb
- name : Build static x86_64-linux-musl-all-features-x86_64-haswell-optimised
if : ${{ matrix.target == 'x86_64-linux-musl' }}
run : |
CARGO_DEB_TARGET_TUPLE="x86_64-unknown-linux-musl"
SOURCE_DATE_EPOCH=$(git log -1 --pretty=%ct)
bin/nix-build-and-cache just .#static-x86_64-linux-musl-all-features-x86_64-haswell-optimised
mkdir -v -p target/release/
mkdir -v -p target/$CARGO_DEB_TARGET_TUPLE/release/
cp -v -f result/bin/conduwuit target/release/conduwuit
cp -v -f result/bin/conduwuit target/$CARGO_DEB_TARGET_TUPLE/release/conduwuit
direnv exec . cargo deb --verbose --no-build --no-strip -p conduwuit --target=$CARGO_DEB_TARGET_TUPLE --output target/release/x86_64-linux-musl-x86_64-haswell-optimised.deb
mv -v target/release/conduwuit static-x86_64-linux-musl-x86_64-haswell-optimised
mv -v target/release/x86_64-linux-musl-x86_64-haswell-optimised.deb x86_64-linux-musl-x86_64-haswell-optimised.deb
# quick smoke test of the x86_64 static release binary
- name : Quick smoke test the x86_64 static release binary
if : ${{ matrix.target == 'x86_64-linux-musl' }}
run : |
# GH actions default runners are x86_64 only
if file result/bin/conduwuit | grep x86-64; then
result/bin/conduwuit --version
result/bin/conduwuit --help
result/bin/conduwuit -Oserver_name="'$(date -u +%s).local'" -Odatabase_path="'/tmp/$(date -u +%s)'" --execute "server admin-notice awawawawawawawawawawa" --execute "server memory-usage" --execute "server shutdown"
fi
- name : Build static debug ${{ matrix.target }}-all-features
2025-04-19 06:00:29 +02:00
shell : bash
2025-04-16 00:38:58 +02:00
run : |
if [[ ${{ matrix.target }} == "x86_64-linux-musl" ]]
then
CARGO_DEB_TARGET_TUPLE="x86_64-unknown-linux-musl"
elif [[ ${{ matrix.target }} == "aarch64-linux-musl" ]]
then
CARGO_DEB_TARGET_TUPLE="aarch64-unknown-linux-musl"
fi
SOURCE_DATE_EPOCH=$(git log -1 --pretty=%ct)
bin/nix-build-and-cache just .#static-${{ matrix.target }}-all-features-debug
# > warning: dev profile is not supported and will be a hard error in the future. cargo-deb is for making releases, and it doesn't make sense to use it with dev profiles.
# so we need to coerce cargo-deb into thinking this is a release binary
mkdir -v -p target/release/
mkdir -v -p target/$CARGO_DEB_TARGET_TUPLE/release/
cp -v -f result/bin/conduwuit target/release/conduwuit
cp -v -f result/bin/conduwuit target/$CARGO_DEB_TARGET_TUPLE/release/conduwuit
direnv exec . cargo deb --verbose --no-build --no-strip -p conduwuit --target=$CARGO_DEB_TARGET_TUPLE --output target/release/${{ matrix.target }}-debug.deb
mv -v target/release/conduwuit static-${{ matrix.target }}-debug
mv -v target/release/${{ matrix.target }}-debug.deb ${{ matrix.target }}-debug.deb
# quick smoke test of the x86_64 static debug binary
- name : Run x86_64 static debug binary
run : |
# GH actions default runners are x86_64 only
if file result/bin/conduwuit | grep x86-64; then
result/bin/conduwuit --version
fi
# check validity of produced deb package, invalid debs will error on these commands
- name : Validate produced deb package
run : |
# List contents
dpkg-deb --contents ${{ matrix.target }}.deb
dpkg-deb --contents ${{ matrix.target }}-debug.deb
# List info
dpkg-deb --info ${{ matrix.target }}.deb
dpkg-deb --info ${{ matrix.target }}-debug.deb
- name : Upload static-x86_64-linux-musl-all-features-x86_64-haswell-optimised to GitHub
2025-04-19 06:18:19 +02:00
uses : forgejo/upload-artifact@v4
2025-04-16 00:38:58 +02:00
if : ${{ matrix.target == 'x86_64-linux-musl' }}
with :
name : static-x86_64-linux-musl-x86_64-haswell-optimised
path : static-x86_64-linux-musl-x86_64-haswell-optimised
if-no-files-found : error
- name : Upload static-${{ matrix.target }}-all-features to GitHub
2025-04-19 06:18:19 +02:00
uses : forgejo/upload-artifact@v4
2025-04-16 00:38:58 +02:00
with :
name : static-${{ matrix.target }}
path : static-${{ matrix.target }}
if-no-files-found : error
- name : Upload static deb ${{ matrix.target }}-all-features to GitHub
2025-04-19 06:18:19 +02:00
uses : forgejo/upload-artifact@v4
2025-04-16 00:38:58 +02:00
with :
name : deb-${{ matrix.target }}
path : ${{ matrix.target }}.deb
if-no-files-found : error
compression-level : 0
- name : Upload static-x86_64-linux-musl-all-features-x86_64-haswell-optimised to webserver
if : ${{ matrix.target == 'x86_64-linux-musl' }}
run : |
if [ ! -z $SSH_WEBSITE ]; then
chmod +x static-x86_64-linux-musl-x86_64-haswell-optimised
scp static-x86_64-linux-musl-x86_64-haswell-optimised website:/var/www/girlboss.ceo/~strawberry/conduwuit/ci-bins/${WEBSERVER_DIR_NAME}/static-x86_64-linux-musl-x86_64-haswell-optimised
fi
- name : Upload static-${{ matrix.target }}-all-features to webserver
run : |
if [ ! -z $SSH_WEBSITE ]; then
chmod +x static-${{ matrix.target }}
scp static-${{ matrix.target }} website:/var/www/girlboss.ceo/~strawberry/conduwuit/ci-bins/${WEBSERVER_DIR_NAME}/static-${{ matrix.target }}
fi
- name : Upload static deb x86_64-linux-musl-all-features-x86_64-haswell-optimised to webserver
if : ${{ matrix.target == 'x86_64-linux-musl' }}
run : |
if [ ! -z $SSH_WEBSITE ]; then
scp x86_64-linux-musl-x86_64-haswell-optimised.deb website:/var/www/girlboss.ceo/~strawberry/conduwuit/ci-bins/${WEBSERVER_DIR_NAME}/x86_64-linux-musl-x86_64-haswell-optimised.deb
fi
- name : Upload static deb ${{ matrix.target }}-all-features to webserver
run : |
if [ ! -z $SSH_WEBSITE ]; then
scp ${{ matrix.target }}.deb website:/var/www/girlboss.ceo/~strawberry/conduwuit/ci-bins/${WEBSERVER_DIR_NAME}/${{ matrix.target }}.deb
fi
- name : Upload static-${{ matrix.target }}-debug-all-features to GitHub
2025-04-19 06:18:19 +02:00
uses : forgejo/upload-artifact@v4
2025-04-16 00:38:58 +02:00
with :
name : static-${{ matrix.target }}-debug
path : static-${{ matrix.target }}-debug
if-no-files-found : error
- name : Upload static deb ${{ matrix.target }}-debug-all-features to GitHub
2025-04-19 06:18:19 +02:00
uses : forgejo/upload-artifact@v4
2025-04-16 00:38:58 +02:00
with :
name : deb-${{ matrix.target }}-debug
path : ${{ matrix.target }}-debug.deb
if-no-files-found : error
compression-level : 0
- name : Upload static-${{ matrix.target }}-debug-all-features to webserver
run : |
if [ ! -z $SSH_WEBSITE ]; then
scp static-${{ matrix.target }}-debug website:/var/www/girlboss.ceo/~strawberry/conduwuit/ci-bins/${WEBSERVER_DIR_NAME}/static-${{ matrix.target }}-debug
fi
- name : Upload static deb ${{ matrix.target }}-debug-all-features to webserver
run : |
if [ ! -z $SSH_WEBSITE ]; then
scp ${{ matrix.target }}-debug.deb website:/var/www/girlboss.ceo/~strawberry/conduwuit/ci-bins/${WEBSERVER_DIR_NAME}/${{ matrix.target }}-debug.deb
fi
- name : Build OCI image ${{ matrix.target }}-all-features
run : |
bin/nix-build-and-cache just .#oci-image-${{ matrix.target }}-all-features
cp -v -f result oci-image-${{ matrix.target }}.tar.gz
- name : Build OCI image x86_64-linux-musl-all-features-x86_64-haswell-optimised
if : ${{ matrix.target == 'x86_64-linux-musl' }}
run : |
bin/nix-build-and-cache just .#oci-image-x86_64-linux-musl-all-features-x86_64-haswell-optimised
cp -v -f result oci-image-x86_64-linux-musl-all-features-x86_64-haswell-optimised.tar.gz
- name : Build debug OCI image ${{ matrix.target }}-all-features
run : |
bin/nix-build-and-cache just .#oci-image-${{ matrix.target }}-all-features-debug
cp -v -f result oci-image-${{ matrix.target }}-debug.tar.gz
- name : Upload OCI image x86_64-linux-musl-all-features-x86_64-haswell-optimised to GitHub
if : ${{ matrix.target == 'x86_64-linux-musl' }}
2025-04-19 06:18:19 +02:00
uses : forgejo/upload-artifact@v4
2025-04-16 00:38:58 +02:00
with :
name : oci-image-x86_64-linux-musl-all-features-x86_64-haswell-optimised
path : oci-image-x86_64-linux-musl-all-features-x86_64-haswell-optimised.tar.gz
if-no-files-found : error
compression-level : 0
- name : Upload OCI image ${{ matrix.target }}-all-features to GitHub
2025-04-19 06:18:19 +02:00
uses : forgejo/upload-artifact@v4
2025-04-16 00:38:58 +02:00
with :
name : oci-image-${{ matrix.target }}
path : oci-image-${{ matrix.target }}.tar.gz
if-no-files-found : error
compression-level : 0
- name : Upload OCI image ${{ matrix.target }}-debug-all-features to GitHub
2025-04-19 06:18:19 +02:00
uses : forgejo/upload-artifact@v4
2025-04-16 00:38:58 +02:00
with :
name : oci-image-${{ matrix.target }}-debug
path : oci-image-${{ matrix.target }}-debug.tar.gz
if-no-files-found : error
compression-level : 0
- name : Upload OCI image x86_64-linux-musl-all-features-x86_64-haswell-optimised.tar.gz to webserver
if : ${{ matrix.target == 'x86_64-linux-musl' }}
run : |
if [ ! -z $SSH_WEBSITE ]; then
scp oci-image-x86_64-linux-musl-all-features-x86_64-haswell-optimised.tar.gz website:/var/www/girlboss.ceo/~strawberry/conduwuit/ci-bins/${WEBSERVER_DIR_NAME}/oci-image-x86_64-linux-musl-all-features-x86_64-haswell-optimised.tar.gz
fi
- name : Upload OCI image ${{ matrix.target }}-all-features to webserver
run : |
if [ ! -z $SSH_WEBSITE ]; then
scp oci-image-${{ matrix.target }}.tar.gz website:/var/www/girlboss.ceo/~strawberry/conduwuit/ci-bins/${WEBSERVER_DIR_NAME}/oci-image-${{ matrix.target }}.tar.gz
fi
- name : Upload OCI image ${{ matrix.target }}-debug-all-features to webserver
run : |
if [ ! -z $SSH_WEBSITE ]; then
scp oci-image-${{ matrix.target }}-debug.tar.gz website:/var/www/girlboss.ceo/~strawberry/conduwuit/ci-bins/${WEBSERVER_DIR_NAME}/oci-image-${{ matrix.target }}-debug.tar.gz
fi
variables :
outputs :
github_repository : ${{ steps.var.outputs.github_repository }}
runs-on : self-hosted
steps :
- name : Setting global variables
uses : https://github.com/actions/github-script@v7
id : var
with :
script : |
core.setOutput('github_repository', '${{ github.repository }}'.toLowerCase())
docker :
name : Docker publish
runs-on : self-hosted
needs : [ build, variables, tests]
permissions :
packages : write
contents : read
if : (startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main' || (github.event.pull_request.draft != true)) && github.event.pull_request.user.login != 'renovate[bot]'
env :
DOCKER_HUB_REPO : docker.io/${{ needs.variables.outputs.github_repository }}
GHCR_REPO : ghcr.io/${{ needs.variables.outputs.github_repository }}
GLCR_REPO : registry.gitlab.com/conduwuit/conduwuit
UNIQUE_TAG : ${{ (github.head_ref != '' && format('merge-{0}-{1}', github.event.number, github.event.pull_request.user.login)) || github.ref_name }}-${{ github.sha }}
BRANCH_TAG : ${{ (startsWith(github.ref, 'refs/tags/v') && !endsWith(github.ref, '-rc') && 'latest') || (github.head_ref != '' && format('merge-{0}-{1}', github.event.number, github.event.pull_request.user.login)) || github.ref_name }}
DOCKERHUB_TOKEN : ${{ secrets.DOCKERHUB_TOKEN }}
GITLAB_TOKEN : ${{ secrets.GITLAB_TOKEN }}
GHCR_ENABLED : "${{ (github.event_name != 'pull_request' || github.event.pull_request.head.repo.fork == false) && 'true' || 'false' }}"
steps :
- name : Login to GitHub Container Registry
uses : docker/login-action@v3
with :
registry : ghcr.io
username : ${{ github.actor }}
password : ${{ secrets.GITHUB_TOKEN }}
- name : Login to Docker Hub
if : ${{ (vars.DOCKER_USERNAME != '') && (env.DOCKERHUB_TOKEN != '') }}
uses : docker/login-action@v3
with :
registry : docker.io
username : ${{ vars.DOCKER_USERNAME }}
password : ${{ secrets.DOCKERHUB_TOKEN }}
- name : Login to GitLab Container Registry
if : ${{ (vars.GITLAB_USERNAME != '') && (env.GITLAB_TOKEN != '') }}
uses : docker/login-action@v3
with :
registry : registry.gitlab.com
username : ${{ vars.GITLAB_USERNAME }}
password : ${{ secrets.GITLAB_TOKEN }}
- name : Download artifacts
uses : actions/download-artifact@v4
with :
pattern : "oci*"
- name : Move OCI images into position
run : |
mv -v oci-image-x86_64-linux-musl-all-features-x86_64-haswell-optimised/*.tar.gz oci-image-amd64-haswell-optimised.tar.gz
mv -v oci-image-x86_64-linux-musl/*.tar.gz oci-image-amd64.tar.gz
mv -v oci-image-aarch64-linux-musl/*.tar.gz oci-image-arm64v8.tar.gz
mv -v oci-image-x86_64-linux-musl-debug/*.tar.gz oci-image-amd64-debug.tar.gz
mv -v oci-image-aarch64-linux-musl-debug/*.tar.gz oci-image-arm64v8-debug.tar.gz
- name : Load and push amd64 haswell image
run : |
docker load -i oci-image-amd64-haswell-optimised.tar.gz
if [ ! -z $DOCKERHUB_TOKEN ]; then
docker tag $(docker images -q conduwuit:main) ${DOCKER_HUB_REPO}:${UNIQUE_TAG}-haswell
docker push ${DOCKER_HUB_REPO}:${UNIQUE_TAG}-haswell
fi
if [ $GHCR_ENABLED = "true" ]; then
docker tag $(docker images -q conduwuit:main) ${GHCR_REPO}:${UNIQUE_TAG}-haswell
docker push ${GHCR_REPO}:${UNIQUE_TAG}-haswell
fi
if [ ! -z $GITLAB_TOKEN ]; then
docker tag $(docker images -q conduwuit:main) ${GLCR_REPO}:${UNIQUE_TAG}-haswell
docker push ${GLCR_REPO}:${UNIQUE_TAG}-haswell
fi
- name : Load and push amd64 image
run : |
docker load -i oci-image-amd64.tar.gz
if [ ! -z $DOCKERHUB_TOKEN ]; then
docker tag $(docker images -q conduwuit:main) ${DOCKER_HUB_REPO}:${UNIQUE_TAG}-amd64
docker push ${DOCKER_HUB_REPO}:${UNIQUE_TAG}-amd64
fi
if [ $GHCR_ENABLED = "true" ]; then
docker tag $(docker images -q conduwuit:main) ${GHCR_REPO}:${UNIQUE_TAG}-amd64
docker push ${GHCR_REPO}:${UNIQUE_TAG}-amd64
fi
if [ ! -z $GITLAB_TOKEN ]; then
docker tag $(docker images -q conduwuit:main) ${GLCR_REPO}:${UNIQUE_TAG}-amd64
docker push ${GLCR_REPO}:${UNIQUE_TAG}-amd64
fi
- name : Load and push arm64 image
run : |
docker load -i oci-image-arm64v8.tar.gz
if [ ! -z $DOCKERHUB_TOKEN ]; then
docker tag $(docker images -q conduwuit:main) ${DOCKER_HUB_REPO}:${UNIQUE_TAG}-arm64v8
docker push ${DOCKER_HUB_REPO}:${UNIQUE_TAG}-arm64v8
fi
if [ $GHCR_ENABLED = "true" ]; then
docker tag $(docker images -q conduwuit:main) ${GHCR_REPO}:${UNIQUE_TAG}-arm64v8
docker push ${GHCR_REPO}:${UNIQUE_TAG}-arm64v8
fi
if [ ! -z $GITLAB_TOKEN ]; then
docker tag $(docker images -q conduwuit:main) ${GLCR_REPO}:${UNIQUE_TAG}-arm64v8
docker push ${GLCR_REPO}:${UNIQUE_TAG}-arm64v8
fi
- name : Load and push amd64 debug image
run : |
docker load -i oci-image-amd64-debug.tar.gz
if [ ! -z $DOCKERHUB_TOKEN ]; then
docker tag $(docker images -q conduwuit:main) ${DOCKER_HUB_REPO}:${UNIQUE_TAG}-amd64-debug
docker push ${DOCKER_HUB_REPO}:${UNIQUE_TAG}-amd64-debug
fi
if [ $GHCR_ENABLED = "true" ]; then
docker tag $(docker images -q conduwuit:main) ${GHCR_REPO}:${UNIQUE_TAG}-amd64-debug
docker push ${GHCR_REPO}:${UNIQUE_TAG}-amd64-debug
fi
if [ ! -z $GITLAB_TOKEN ]; then
docker tag $(docker images -q conduwuit:main) ${GLCR_REPO}:${UNIQUE_TAG}-amd64-debug
docker push ${GLCR_REPO}:${UNIQUE_TAG}-amd64-debug
fi
- name : Load and push arm64 debug image
run : |
docker load -i oci-image-arm64v8-debug.tar.gz
if [ ! -z $DOCKERHUB_TOKEN ]; then
docker tag $(docker images -q conduwuit:main) ${DOCKER_HUB_REPO}:${UNIQUE_TAG}-arm64v8-debug
docker push ${DOCKER_HUB_REPO}:${UNIQUE_TAG}-arm64v8-debug
fi
if [ $GHCR_ENABLED = "true" ]; then
docker tag $(docker images -q conduwuit:main) ${GHCR_REPO}:${UNIQUE_TAG}-arm64v8-debug
docker push ${GHCR_REPO}:${UNIQUE_TAG}-arm64v8-debug
fi
if [ ! -z $GITLAB_TOKEN ]; then
docker tag $(docker images -q conduwuit:main) ${GLCR_REPO}:${UNIQUE_TAG}-arm64v8-debug
docker push ${GLCR_REPO}:${UNIQUE_TAG}-arm64v8-debug
fi
- name : Create Docker haswell manifests
run : |
# Dockerhub Container Registry
if [ ! -z $DOCKERHUB_TOKEN ]; then
docker manifest create ${DOCKER_HUB_REPO}:${UNIQUE_TAG}-haswell --amend ${DOCKER_HUB_REPO}:${UNIQUE_TAG}-haswell
docker manifest create ${DOCKER_HUB_REPO}:${BRANCH_TAG}-haswell --amend ${DOCKER_HUB_REPO}:${UNIQUE_TAG}-haswell
fi
# GitHub Container Registry
if [ $GHCR_ENABLED = "true" ]; then
docker manifest create ${GHCR_REPO}:${UNIQUE_TAG}-haswell --amend ${GHCR_REPO}:${UNIQUE_TAG}-haswell
docker manifest create ${GHCR_REPO}:${BRANCH_TAG}-haswell --amend ${GHCR_REPO}:${UNIQUE_TAG}-haswell
fi
# GitLab Container Registry
if [ ! -z $GITLAB_TOKEN ]; then
docker manifest create ${GLCR_REPO}:${UNIQUE_TAG}-haswell --amend ${GLCR_REPO}:${UNIQUE_TAG}-haswell
docker manifest create ${GLCR_REPO}:${BRANCH_TAG}-haswell --amend ${GLCR_REPO}:${UNIQUE_TAG}-haswell
fi
- name : Create Docker combined manifests
run : |
# Dockerhub Container Registry
if [ ! -z $DOCKERHUB_TOKEN ]; then
docker manifest create ${DOCKER_HUB_REPO}:${UNIQUE_TAG} --amend ${DOCKER_HUB_REPO}:${UNIQUE_TAG}-arm64v8 --amend ${DOCKER_HUB_REPO}:${UNIQUE_TAG}-amd64
docker manifest create ${DOCKER_HUB_REPO}:${BRANCH_TAG} --amend ${DOCKER_HUB_REPO}:${UNIQUE_TAG}-arm64v8 --amend ${DOCKER_HUB_REPO}:${UNIQUE_TAG}-amd64
fi
# GitHub Container Registry
if [ $GHCR_ENABLED = "true" ]; then
docker manifest create ${GHCR_REPO}:${UNIQUE_TAG} --amend ${GHCR_REPO}:${UNIQUE_TAG}-arm64v8 --amend ${GHCR_REPO}:${UNIQUE_TAG}-amd64
docker manifest create ${GHCR_REPO}:${BRANCH_TAG} --amend ${GHCR_REPO}:${UNIQUE_TAG}-arm64v8 --amend ${GHCR_REPO}:${UNIQUE_TAG}-amd64
fi
# GitLab Container Registry
if [ ! -z $GITLAB_TOKEN ]; then
docker manifest create ${GLCR_REPO}:${UNIQUE_TAG} --amend ${GLCR_REPO}:${UNIQUE_TAG}-arm64v8 --amend ${GLCR_REPO}:${UNIQUE_TAG}-amd64
docker manifest create ${GLCR_REPO}:${BRANCH_TAG} --amend ${GLCR_REPO}:${UNIQUE_TAG}-arm64v8 --amend ${GLCR_REPO}:${UNIQUE_TAG}-amd64
fi
- name : Create Docker combined debug manifests
run : |
# Dockerhub Container Registry
if [ ! -z $DOCKERHUB_TOKEN ]; then
docker manifest create ${DOCKER_HUB_REPO}:${UNIQUE_TAG}-debug --amend ${DOCKER_HUB_REPO}:${UNIQUE_TAG}-arm64v8-debug --amend ${DOCKER_HUB_REPO}:${UNIQUE_TAG}-amd64-debug
docker manifest create ${DOCKER_HUB_REPO}:${BRANCH_TAG}-debug --amend ${DOCKER_HUB_REPO}:${UNIQUE_TAG}-arm64v8-debug --amend ${DOCKER_HUB_REPO}:${UNIQUE_TAG}-amd64-debug
fi
# GitHub Container Registry
if [ $GHCR_ENABLED = "true" ]; then
docker manifest create ${GHCR_REPO}:${UNIQUE_TAG}-debug --amend ${GHCR_REPO}:${UNIQUE_TAG}-arm64v8-debug --amend ${GHCR_REPO}:${UNIQUE_TAG}-amd64-debug
docker manifest create ${GHCR_REPO}:${BRANCH_TAG}-debug --amend ${GHCR_REPO}:${UNIQUE_TAG}-arm64v8-debug --amend ${GHCR_REPO}:${UNIQUE_TAG}-amd64-debug
fi
# GitLab Container Registry
if [ ! -z $GITLAB_TOKEN ]; then
docker manifest create ${GLCR_REPO}:${UNIQUE_TAG}-debug --amend ${GLCR_REPO}:${UNIQUE_TAG}-arm64v8-debug --amend ${GLCR_REPO}:${UNIQUE_TAG}-amd64-debug
docker manifest create ${GLCR_REPO}:${BRANCH_TAG}-debug --amend ${GLCR_REPO}:${UNIQUE_TAG}-arm64v8-debug --amend ${GLCR_REPO}:${UNIQUE_TAG}-amd64-debug
fi
- name : Push manifests to Docker registries
run : |
if [ ! -z $DOCKERHUB_TOKEN ]; then
docker manifest push ${DOCKER_HUB_REPO}:${UNIQUE_TAG}
docker manifest push ${DOCKER_HUB_REPO}:${BRANCH_TAG}
docker manifest push ${DOCKER_HUB_REPO}:${UNIQUE_TAG}-debug
docker manifest push ${DOCKER_HUB_REPO}:${BRANCH_TAG}-debug
docker manifest push ${DOCKER_HUB_REPO}:${UNIQUE_TAG}-haswell
docker manifest push ${DOCKER_HUB_REPO}:${BRANCH_TAG}-haswell
fi
if [ $GHCR_ENABLED = "true" ]; then
docker manifest push ${GHCR_REPO}:${UNIQUE_TAG}
docker manifest push ${GHCR_REPO}:${BRANCH_TAG}
docker manifest push ${GHCR_REPO}:${UNIQUE_TAG}-debug
docker manifest push ${GHCR_REPO}:${BRANCH_TAG}-debug
docker manifest push ${GHCR_REPO}:${UNIQUE_TAG}-haswell
docker manifest push ${GHCR_REPO}:${BRANCH_TAG}-haswell
fi
if [ ! -z $GITLAB_TOKEN ]; then
docker manifest push ${GLCR_REPO}:${UNIQUE_TAG}
docker manifest push ${GLCR_REPO}:${BRANCH_TAG}
docker manifest push ${GLCR_REPO}:${UNIQUE_TAG}-debug
docker manifest push ${GLCR_REPO}:${BRANCH_TAG}-debug
docker manifest push ${GLCR_REPO}:${UNIQUE_TAG}-haswell
docker manifest push ${GLCR_REPO}:${BRANCH_TAG}-haswell
fi
- name : Add Image Links to Job Summary
run : |
if [ ! -z $DOCKERHUB_TOKEN ]; then
echo "- \`docker pull ${DOCKER_HUB_REPO}:${UNIQUE_TAG}\`" >> $GITHUB_STEP_SUMMARY
echo "- \`docker pull ${DOCKER_HUB_REPO}:${UNIQUE_TAG}-debug\`" >> $GITHUB_STEP_SUMMARY
echo "- \`docker pull ${DOCKER_HUB_REPO}:${UNIQUE_TAG}-haswell\`" >> $GITHUB_STEP_SUMMARY
fi
if [ $GHCR_ENABLED = "true" ]; then
echo "- \`docker pull ${GHCR_REPO}:${UNIQUE_TAG}\`" >> $GITHUB_STEP_SUMMARY
echo "- \`docker pull ${GHCR_REPO}:${UNIQUE_TAG}-debug\`" >> $GITHUB_STEP_SUMMARY
echo "- \`docker pull ${GHCR_REPO}:${UNIQUE_TAG}-haswell\`" >> $GITHUB_STEP_SUMMARY
fi
if [ ! -z $GITLAB_TOKEN ]; then
echo "- \`docker pull ${GLCR_REPO}:${UNIQUE_TAG}\`" >> $GITHUB_STEP_SUMMARY
echo "- \`docker pull ${GLCR_REPO}:${UNIQUE_TAG}-debug\`" >> $GITHUB_STEP_SUMMARY
echo "- \`docker pull ${GLCR_REPO}:${UNIQUE_TAG}-haswell\`" >> $GITHUB_STEP_SUMMARY
fi