2024-03-18 01:30:40 -04:00
name : CI and Artifacts
2023-12-20 16:35:52 -08:00
on :
2024-04-22 16:07:26 +01:00
pull_request :
push :
2024-04-25 23:49:17 -04:00
paths-ignore :
2024-04-25 23:58:01 -04:00
- '.gitlab-ci.yml'
- '.gitignore'
- 'renovate.json'
- 'debian/**'
- 'docker/**'
2024-04-22 16:07:26 +01:00
branches :
- main
2024-05-05 02:18:15 -04:00
tags :
- '*'
2024-04-22 16:07:26 +01:00
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch :
2024-03-17 18:54:53 -04:00
2024-04-25 23:49:17 -04:00
concurrency :
group : ${{ github.head_ref || github.ref_name }}
2024-11-24 22:15:25 +00:00
cancel-in-progress : true
2024-04-25 23:49:17 -04:00
2023-12-20 16:35:52 -08:00
env :
2024-07-27 12:06:06 -04:00
# sccache only on main repo
2025-01-25 21:04:52 -05:00
SCCACHE_GHA_ENABLED : "${{ !startsWith(github.ref, 'refs/tags/') && (github.event.pull_request.draft != true) && (vars.DOCKER_USERNAME != '') && (vars.GITLAB_USERNAME != '') && (vars.SCCACHE_ENDPOINT != '') && (github.event.pull_request.user.login != 'renovate[bot]') && 'true' || 'false' }}"
RUSTC_WRAPPER : "${{ !startsWith(github.ref, 'refs/tags/') && (github.event.pull_request.draft != true) && (vars.DOCKER_USERNAME != '') && (vars.GITLAB_USERNAME != '') && (vars.SCCACHE_ENDPOINT != '') && (github.event.pull_request.user.login != 'renovate[bot]') && 'sccache' || '' }}"
2024-07-27 23:40:54 -04:00
SCCACHE_BUCKET : "${{ (github.event.pull_request.draft != true) && (vars.DOCKER_USERNAME != '') && (vars.GITLAB_USERNAME != '') && (vars.SCCACHE_ENDPOINT != '') && (github.event.pull_request.user.login != 'renovate[bot]') && 'sccache' || '' }}"
2024-07-24 22:22:45 -04:00
SCCACHE_S3_USE_SSL : ${{ vars.SCCACHE_S3_USE_SSL }}
SCCACHE_REGION : ${{ vars.SCCACHE_REGION }}
SCCACHE_ENDPOINT : ${{ vars.SCCACHE_ENDPOINT }}
SCCACHE_CACHE_MULTIARCH : ${{ vars.SCCACHE_CACHE_MULTIARCH }}
AWS_ACCESS_KEY_ID : ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY : ${{ secrets.AWS_SECRET_ACCESS_KEY }}
2024-04-22 16:07:26 +01:00
# Required to make some things output color
TERM : ansi
# Publishing to my nix binary cache
ATTIC_TOKEN : ${{ secrets.ATTIC_TOKEN }}
2024-06-15 17:32:51 -04:00
# conduwuit.cachix.org
CACHIX_AUTH_TOKEN : ${{ secrets.CACHIX_AUTH_TOKEN }}
2024-04-22 16:07:26 +01:00
# 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 }}
2024-07-14 00:47:56 -04:00
# 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
2025-03-04 23:35:21 -05:00
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=
2024-10-24 21:29:17 -04:00
experimental-features = nix-command flakes
extra-experimental-features = nix-command flakes
accept-flake-config = true
2024-12-13 01:47:53 -05:00
WEB_UPLOAD_SSH_USERNAME : ${{ secrets.WEB_UPLOAD_SSH_USERNAME }}
2024-12-14 21:00:33 -05:00
GH_REF_NAME : ${{ github.ref_name }}
2025-01-25 21:04:52 -05:00
WEBSERVER_DIR_NAME : ${{ (github.head_ref != '' && format('merge-{0}-{1}', github.event.number, github.event.pull_request.user.login)) || github.ref_name }}-${{ github.sha }}
2023-12-20 16:35:52 -08:00
2024-12-14 21:00:33 -05:00
permissions : {}
2024-03-02 10:59:04 -05:00
2023-12-20 16:35:52 -08:00
jobs :
2024-04-24 12:31:54 +01:00
tests :
2024-04-26 01:11:12 +01:00
name : Test
2025-03-04 23:35:21 -05:00
runs-on : self-hosted
2024-04-22 16:07:26 +01:00
steps :
2024-12-13 01:47:53 -05:00
- name : Setup SSH web publish
2024-12-19 18:56:58 +00:00
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]'
2024-12-13 01:47:53 -05:00
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"
2025-01-25 21:04:52 -05:00
ssh -q website "echo test" || ssh -q website "echo test"
2024-12-13 01:47:53 -05:00
echo "Creating commit rev directory on web server"
2025-01-25 21:04:52 -05:00
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"
2024-12-13 01:47:53 -05:00
2024-04-22 16:07:26 +01:00
- name : Sync repository
uses : actions/checkout@v4
2024-12-14 21:00:33 -05:00
with :
persist-credentials : false
2024-04-22 16:07:26 +01:00
2024-05-05 02:10:47 -04:00
- name : Tag comparison check
2024-07-16 00:44:47 -04:00
if : ${{ startsWith(github.ref, 'refs/tags/v') && !endsWith(github.ref, '-rc') }}
2024-05-05 02:10:47 -04:00
run : |
# Tag mismatch with latest repo tag check to prevent potential downgrades
LATEST_TAG=$(git describe --tags `git rev-list --tags --max-count=1`)
2024-12-14 21:00:33 -05:00
if [ ${LATEST_TAG} != ${GH_REF_NAME} ]; then
2024-05-05 02:10:47 -04:00
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
2024-04-26 01:11:12 +01:00
- name : Prepare build environment
2024-04-24 01:22:14 +01:00
run : |
echo 'source $HOME/.nix-profile/share/nix-direnv/direnvrc' > "$HOME/.direnvrc"
direnv allow
2024-10-24 21:29:17 -04:00
nix develop .#all-features --command true
2024-04-22 16:07:26 +01:00
2024-05-24 13:09:30 -04:00
- name : Cache CI dependencies
run : |
2024-09-08 20:51:34 +02:00
bin/nix-build-and-cache ci
2024-10-24 22:08:23 -04:00
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'
2024-07-03 12:12:11 -04:00
2024-07-24 22:22:45 -04:00
# use sccache for Rust
- name : Run sccache-cache
2025-01-25 21:04:52 -05:00
# we want a fresh-state when we do releases/tags to avoid potential cache poisoning attacks impacting
# releases and tags
2025-02-09 10:17:28 -05:00
#if: ${{ (env.SCCACHE_GHA_ENABLED == 'true') && !startsWith(github.ref, 'refs/tags/') }}
2024-07-24 22:22:45 -04:00
uses : mozilla-actions/sccache-action@main
# use rust-cache
2024-07-03 03:39:49 +02:00
- uses : Swatinem/rust-cache@v2
2025-01-25 21:04:52 -05:00
# we want a fresh-state when we do releases/tags to avoid potential cache poisoning attacks impacting
# releases and tags
2025-02-09 10:17:28 -05:00
#if: ${{ !startsWith(github.ref, 'refs/tags/') }}
2024-07-24 23:33:38 -04:00
with :
cache-all-crates : "true"
2025-01-02 18:55:52 -05:00
cache-on-failure : "true"
cache-targets : "true"
2024-05-24 13:09:30 -04:00
2024-04-24 01:22:14 +01:00
- name : Run CI tests
2024-10-24 21:29:17 -04:00
env :
CARGO_PROFILE : "test"
2024-04-24 01:22:14 +01:00
run : |
2024-04-26 01:11:12 +01:00
direnv exec . engage > >(tee -a test_output.log)
2024-05-01 22:38:22 -04:00
- name : Run Complement tests
2024-10-24 21:29:17 -04:00
env :
CARGO_PROFILE : "test"
2024-05-01 22:38:22 -04:00
run : |
2024-07-06 21:15:44 -04: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)
2024-05-12 00:22:10 -04:00
cp -v -f result complement_oci_image.tar.gz
- name : Upload Complement OCI image
uses : actions/upload-artifact@v4
with :
name : complement_oci_image.tar.gz
path : complement_oci_image.tar.gz
if-no-files-found : error
2024-12-13 01:47:53 -05:00
compression-level : 0
2024-05-01 22:38:22 -04:00
- name : Upload Complement logs
uses : actions/upload-artifact@v4
with :
name : complement_test_logs.jsonl
path : complement_test_logs.jsonl
if-no-files-found : error
- name : Upload Complement results
uses : actions/upload-artifact@v4
with :
name : complement_test_results.jsonl
path : complement_test_results.jsonl
if-no-files-found : error
2024-05-02 13:00:47 -04:00
- name : Diff Complement results with checked-in repo results
run : |
2024-07-06 21:15:44 -04:00
diff -u --color=always tests/test_results/complement/test_results.jsonl complement_test_results.jsonl > >(tee -a complement_diff_output.log)
2024-05-01 22:53:16 -04:00
2024-04-26 01:11:12 +01:00
- name : Update Job Summary
2024-12-14 21:00:33 -05:00
env :
GH_JOB_STATUS : ${{ job.status }}
2024-04-26 01:11:12 +01:00
if : success() || failure()
run : |
2024-12-14 21:00:33 -05:00
if [ ${GH_JOB_STATUS} == 'success' ]; then
2025-03-08 00:15:13 -05:00
echo '# ✅ CI completed suwuccessfully' >> $GITHUB_STEP_SUMMARY
2024-04-26 01:11:12 +01:00
else
2025-03-08 00:15:13 -05:00
echo '# ❌ CI failed (last 100 lines of output)' >> $GITHUB_STEP_SUMMARY
2024-04-26 01:11:12 +01:00
echo '```' >> $GITHUB_STEP_SUMMARY
2025-03-08 00:15:13 -05:00
tail -n 100 test_output.log | sed 's/\x1b\[[0-9;]*m//g' >> $GITHUB_STEP_SUMMARY
2024-07-05 15:50:49 -04:00
echo '```' >> $GITHUB_STEP_SUMMARY
2024-04-22 16:07:26 +01:00
2025-03-08 15:48:23 -05:00
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
2024-07-25 21:33:34 -04:00
2024-04-24 01:22:14 +01:00
build :
name : Build
2025-03-04 23:35:21 -05:00
runs-on : self-hosted
2024-04-22 16:07:26 +01:00
strategy :
matrix :
2024-04-24 01:22:14 +01:00
include :
2024-10-24 23:03:36 -04:00
- target : aarch64-linux-musl
- target : x86_64-linux-musl
2024-04-22 16:07:26 +01:00
steps :
- name : Sync repository
uses : actions/checkout@v4
2024-12-14 21:00:33 -05:00
with :
persist-credentials : false
2024-04-22 16:07:26 +01:00
2024-12-13 01:47:53 -05:00
- name : Setup SSH web publish
2024-12-19 18:56:58 +00:00
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]'
2024-12-13 01:47:53 -05:00
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"
2025-01-25 21:04:52 -05:00
ssh -q website "echo test" || ssh -q website "echo test"
2024-12-13 01:47:53 -05:00
2025-01-21 13:32:10 +01:00
echo "SSH_WEBSITE=1" >> "$GITHUB_ENV"
2024-04-26 01:11:12 +01:00
- name : Prepare build environment
2024-04-24 01:22:14 +01:00
run : |
echo 'source $HOME/.nix-profile/share/nix-direnv/direnvrc' > "$HOME/.direnvrc"
direnv allow
2024-08-21 19:43:28 -04:00
nix develop .#all-features --command true --impure
2024-04-22 16:07:26 +01:00
2024-07-24 22:22:45 -04:00
# use sccache for Rust
- name : Run sccache-cache
2025-01-25 21:04:52 -05:00
# we want a fresh-state when we do releases/tags to avoid potential cache poisoning attacks impacting
# releases and tags
2025-02-09 10:17:28 -05:00
#if: ${{ (env.SCCACHE_GHA_ENABLED == 'true') && !startsWith(github.ref, 'refs/tags/') }}
2024-07-24 22:22:45 -04:00
uses : mozilla-actions/sccache-action@main
# use rust-cache
- uses : Swatinem/rust-cache@v2
2025-01-25 21:04:52 -05:00
# we want a fresh-state when we do releases/tags to avoid potential cache poisoning attacks impacting
# releases and tags
2025-02-09 10:17:28 -05:00
#if: ${{ !startsWith(github.ref, 'refs/tags/') }}
2024-07-24 23:33:38 -04:00
with :
cache-all-crates : "true"
2025-01-02 18:55:52 -05:00
cache-on-failure : "true"
cache-targets : "true"
2024-07-24 22:22:45 -04:00
2024-12-13 00:21:36 -05:00
- name : Build static ${{ matrix.target }}-all-features
2024-04-22 16:07:26 +01:00
run : |
2024-10-24 23:03:36 -04:00
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
2024-06-15 17:13:04 -04:00
SOURCE_DATE_EPOCH=$(git log -1 --pretty=%ct)
2024-05-13 18:19:59 -04:00
2024-09-08 20:51:34 +02:00
bin/nix-build-and-cache just .#static-${{ matrix.target }}-all-features
2024-07-24 22:45:27 -04:00
2024-05-13 22:14:38 -04:00
mkdir -v -p target/release/
mkdir -v -p target/$CARGO_DEB_TARGET_TUPLE/release/
2024-12-14 21:58:01 -05:00
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
2024-05-13 22:14:38 -04:00
mv -v target/release/conduwuit static-${{ matrix.target }}
mv -v target/release/${{ matrix.target }}.deb ${{ matrix.target }}.deb
2024-04-22 16:07:26 +01:00
2024-12-13 00:21:36 -05:00
- name : Build static x86_64-linux-musl-all-features-x86_64-haswell-optimised
2024-12-13 01:47:53 -05:00
if : ${{ matrix.target == 'x86_64-linux-musl' }}
2024-12-13 00:21:36 -05:00
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/
2024-12-14 21:58:01 -05:00
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
2024-12-13 00:21:36 -05:00
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
2024-07-24 19:32:26 -04:00
# quick smoke test of the x86_64 static release binary
2024-12-13 00:21:36 -05:00
- name : Quick smoke test the x86_64 static release binary
2024-12-13 01:47:53 -05:00
if : ${{ matrix.target == 'x86_64-linux-musl' }}
2024-07-24 19:32:26 -04:00
run : |
# GH actions default runners are x86_64 only
2024-12-14 21:58:01 -05:00
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"
2024-07-24 19:32:26 -04:00
fi
2024-12-13 00:21:36 -05:00
- name : Build static debug ${{ matrix.target }}-all-features
2024-07-24 19:32:26 -04:00
run : |
2024-10-24 23:03:36 -04:00
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
2024-07-24 19:32:26 -04:00
SOURCE_DATE_EPOCH=$(git log -1 --pretty=%ct)
2024-09-08 20:51:34 +02:00
bin/nix-build-and-cache just .#static-${{ matrix.target }}-all-features-debug
2024-07-24 19:32:26 -04:00
# > 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/
2024-12-14 21:58:01 -05:00
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
2024-07-24 19:32:26 -04:00
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
2024-07-17 22:57:51 -04:00
run : |
# GH actions default runners are x86_64 only
2024-12-14 21:58:01 -05:00
if file result/bin/conduwuit | grep x86-64; then
result/bin/conduwuit --version
2024-07-17 22:57:51 -04:00
fi
2024-07-24 19:40:53 -04:00
# 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
2024-12-13 01:47:53 -05:00
- name : Upload static-x86_64-linux-musl-all-features-x86_64-haswell-optimised to GitHub
uses : actions/upload-artifact@v4
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
2024-04-22 16:07:26 +01:00
uses : actions/upload-artifact@v4
with :
name : static-${{ matrix.target }}
2024-04-24 12:31:54 +01:00
path : static-${{ matrix.target }}
2024-04-22 16:07:26 +01:00
if-no-files-found : error
2024-12-13 01:47:53 -05:00
- name : Upload static deb ${{ matrix.target }}-all-features to GitHub
2024-04-22 16:07:26 +01:00
uses : actions/upload-artifact@v4
with :
2024-04-24 12:31:54 +01:00
name : deb-${{ matrix.target }}
2024-05-13 17:35:23 -04:00
path : ${{ matrix.target }}.deb
2024-04-22 16:07:26 +01:00
if-no-files-found : error
2024-05-13 22:14:38 -04:00
compression-level : 0
2024-04-22 16:07:26 +01:00
2024-12-13 01:47:53 -05:00
- name : Upload static-x86_64-linux-musl-all-features-x86_64-haswell-optimised to webserver
if : ${{ matrix.target == 'x86_64-linux-musl' }}
run : |
2025-01-21 13:32:10 +01:00
if [ ! -z $SSH_WEBSITE ]; then
2025-01-12 19:18:07 -05:00
chmod +x static-x86_64-linux-musl-x86_64-haswell-optimised
2025-01-25 21:04:52 -05:00
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
2024-12-13 01:47:53 -05:00
fi
- name : Upload static-${{ matrix.target }}-all-features to webserver
run : |
2025-01-21 13:32:10 +01:00
if [ ! -z $SSH_WEBSITE ]; then
2025-01-12 19:18:07 -05:00
chmod +x static-${{ matrix.target }}
2025-01-25 21:04:52 -05:00
scp static-${{ matrix.target }} website:/var/www/girlboss.ceo/~strawberry/conduwuit/ci-bins/${WEBSERVER_DIR_NAME}/static-${{ matrix.target }}
2024-12-13 01:47:53 -05:00
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 : |
2025-01-21 13:32:10 +01:00
if [ ! -z $SSH_WEBSITE ]; then
2025-01-25 21:04:52 -05:00
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
2024-12-13 01:47:53 -05:00
fi
- name : Upload static deb ${{ matrix.target }}-all-features to webserver
run : |
2025-01-21 13:32:10 +01:00
if [ ! -z $SSH_WEBSITE ]; then
2025-01-25 21:04:52 -05:00
scp ${{ matrix.target }}.deb website:/var/www/girlboss.ceo/~strawberry/conduwuit/ci-bins/${WEBSERVER_DIR_NAME}/${{ matrix.target }}.deb
2024-12-13 01:47:53 -05:00
fi
- name : Upload static-${{ matrix.target }}-debug-all-features to GitHub
2024-07-24 19:32:26 -04:00
uses : actions/upload-artifact@v4
with :
name : static-${{ matrix.target }}-debug
path : static-${{ matrix.target }}-debug
if-no-files-found : error
2024-12-13 01:47:53 -05:00
- name : Upload static deb ${{ matrix.target }}-debug-all-features to GitHub
2024-07-24 19:32:26 -04:00
uses : actions/upload-artifact@v4
with :
name : deb-${{ matrix.target }}-debug
path : ${{ matrix.target }}-debug.deb
if-no-files-found : error
compression-level : 0
2024-12-13 01:47:53 -05:00
- name : Upload static-${{ matrix.target }}-debug-all-features to webserver
run : |
2025-01-21 13:32:10 +01:00
if [ ! -z $SSH_WEBSITE ]; then
2025-01-25 21:04:52 -05:00
scp static-${{ matrix.target }}-debug website:/var/www/girlboss.ceo/~strawberry/conduwuit/ci-bins/${WEBSERVER_DIR_NAME}/static-${{ matrix.target }}-debug
2024-12-13 01:47:53 -05:00
fi
- name : Upload static deb ${{ matrix.target }}-debug-all-features to webserver
run : |
2025-01-25 21:04:52 -05:00
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
2024-12-13 01:47:53 -05:00
fi
2024-12-13 00:21:36 -05:00
- name : Build OCI image ${{ matrix.target }}-all-features
2024-04-22 16:07:26 +01:00
run : |
2024-09-08 20:51:34 +02:00
bin/nix-build-and-cache just .#oci-image-${{ matrix.target }}-all-features
2024-07-24 22:45:27 -04:00
2024-04-24 01:22:14 +01:00
cp -v -f result oci-image-${{ matrix.target }}.tar.gz
2024-04-22 16:07:26 +01:00
2024-12-13 00:21:36 -05:00
- name : Build OCI image x86_64-linux-musl-all-features-x86_64-haswell-optimised
2024-12-13 01:47:53 -05:00
if : ${{ matrix.target == 'x86_64-linux-musl' }}
2024-12-13 00:21:36 -05:00
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
2024-07-24 19:32:26 -04:00
run : |
2024-09-08 20:51:34 +02:00
bin/nix-build-and-cache just .#oci-image-${{ matrix.target }}-all-features-debug
2024-07-24 22:45:27 -04:00
2024-07-24 19:32:26 -04:00
cp -v -f result oci-image-${{ matrix.target }}-debug.tar.gz
2025-01-26 01:05:41 +00:00
- name : Upload OCI image x86_64-linux-musl-all-features-x86_64-haswell-optimised to GitHub
if : ${{ matrix.target == 'x86_64-linux-musl' }}
uses : actions/upload-artifact@v4
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
2024-12-13 01:47:53 -05:00
- name : Upload OCI image ${{ matrix.target }}-all-features to GitHub
2024-04-22 16:07:26 +01:00
uses : actions/upload-artifact@v4
with :
2024-04-24 12:31:54 +01:00
name : oci-image-${{ matrix.target }}
2024-04-24 01:22:14 +01:00
path : oci-image-${{ matrix.target }}.tar.gz
2024-04-22 16:07:26 +01:00
if-no-files-found : error
compression-level : 0
2024-12-13 01:47:53 -05:00
- name : Upload OCI image ${{ matrix.target }}-debug-all-features to GitHub
2024-07-24 19:32:26 -04:00
uses : actions/upload-artifact@v4
with :
name : oci-image-${{ matrix.target }}-debug
path : oci-image-${{ matrix.target }}-debug.tar.gz
if-no-files-found : error
compression-level : 0
2024-12-13 01:47:53 -05:00
- 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 : |
2025-01-21 13:32:10 +01:00
if [ ! -z $SSH_WEBSITE ]; then
2025-01-25 21:04:52 -05:00
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
2024-12-13 01:47:53 -05:00
fi
- name : Upload OCI image ${{ matrix.target }}-all-features to webserver
run : |
2025-01-21 13:32:10 +01:00
if [ ! -z $SSH_WEBSITE ]; then
2025-01-25 21:04:52 -05:00
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
2024-12-13 01:47:53 -05:00
fi
- name : Upload OCI image ${{ matrix.target }}-debug-all-features to webserver
run : |
2025-01-21 13:32:10 +01:00
if [ ! -z $SSH_WEBSITE ]; then
2025-01-25 21:04:52 -05:00
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
2024-12-13 01:47:53 -05:00
fi
2024-12-19 18:56:58 +00:00
variables :
outputs :
github_repository : ${{ steps.var.outputs.github_repository }}
2025-03-04 23:35:21 -05:00
runs-on : self-hosted
2024-12-19 18:56:58 +00:00
steps :
- name : Setting global variables
uses : actions/github-script@v7
id : var
with :
script : |
core.setOutput('github_repository', '${{ github.repository }}'.toLowerCase())
2024-04-24 01:22:14 +01:00
docker :
2024-04-26 01:11:12 +01:00
name : Docker publish
2025-03-04 23:35:21 -05:00
runs-on : self-hosted
2025-01-10 10:51:39 -05:00
needs : [ build, variables, tests]
2024-12-14 21:00:33 -05:00
permissions :
packages : write
contents : read
2024-12-19 18:56:58 +00:00
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]'
2024-04-26 01:11:12 +01:00
env :
2025-01-26 01:05:41 +00:00
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 }}
2024-05-05 20:13:52 -04:00
2024-04-26 20:46:08 -04:00
DOCKERHUB_TOKEN : ${{ secrets.DOCKERHUB_TOKEN }}
2024-05-02 23:19:05 -04:00
GITLAB_TOKEN : ${{ secrets.GITLAB_TOKEN }}
2024-12-19 22:11:26 +00:00
GHCR_ENABLED : "${{ (github.event_name != 'pull_request' || github.event.pull_request.head.repo.fork == false) && 'true' || 'false' }}"
2024-04-22 16:07:26 +01:00
steps :
- name : Login to GitHub Container Registry
uses : docker/login-action@v3
with :
registry : ghcr.io
2024-04-25 02:41:41 +01:00
username : ${{ github.actor }}
2024-04-22 16:07:26 +01:00
password : ${{ secrets.GITHUB_TOKEN }}
- name : Login to Docker Hub
2024-04-26 20:46:08 -04:00
if : ${{ (vars.DOCKER_USERNAME != '') && (env.DOCKERHUB_TOKEN != '') }}
2024-04-22 16:07:26 +01:00
uses : docker/login-action@v3
with :
2024-04-25 02:41:41 +01:00
registry : docker.io
username : ${{ vars.DOCKER_USERNAME }}
password : ${{ secrets.DOCKERHUB_TOKEN }}
2024-04-24 01:22:14 +01:00
2024-05-02 23:19:05 -04:00
- 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 }}
2024-04-25 02:41:41 +01:00
- name : Download artifacts
uses : actions/download-artifact@v4
2025-03-10 13:36:56 -04:00
with :
pattern : "oci*"
2024-04-25 02:41:41 +01:00
2024-04-26 01:11:12 +01:00
- name : Move OCI images into position
2024-04-22 16:07:26 +01:00
run : |
2025-01-26 01:05:41 +00:00
mv -v oci-image-x86_64-linux-musl-all-features-x86_64-haswell-optimised/*.tar.gz oci-image-amd64-haswell-optimised.tar.gz
2024-10-24 23:03:36 -04:00
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
2024-04-25 02:41:41 +01:00
2025-01-26 01:05:41 +00:00
- name : Load and push amd64 haswell image
run : |
2025-01-26 20:44:40 +00:00
docker load -i oci-image-amd64-haswell-optimised.tar.gz
2025-01-26 01:05:41 +00:00
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
2024-04-26 01:11:12 +01:00
- name : Load and push amd64 image
run : |
docker load -i oci-image-amd64.tar.gz
2024-12-19 18:56:58 +00:00
if [ ! -z $DOCKERHUB_TOKEN ]; then
2025-01-26 01:05:41 +00:00
docker tag $(docker images -q conduwuit:main) ${DOCKER_HUB_REPO}:${UNIQUE_TAG}-amd64
docker push ${DOCKER_HUB_REPO}:${UNIQUE_TAG}-amd64
2024-12-19 18:56:58 +00:00
fi
2024-12-19 22:11:26 +00:00
if [ $GHCR_ENABLED = "true" ]; then
2025-01-26 01:05:41 +00:00
docker tag $(docker images -q conduwuit:main) ${GHCR_REPO}:${UNIQUE_TAG}-amd64
docker push ${GHCR_REPO}:${UNIQUE_TAG}-amd64
2024-12-19 22:11:26 +00:00
fi
2024-12-19 18:56:58 +00:00
if [ ! -z $GITLAB_TOKEN ]; then
2025-01-26 01:05:41 +00:00
docker tag $(docker images -q conduwuit:main) ${GLCR_REPO}:${UNIQUE_TAG}-amd64
docker push ${GLCR_REPO}:${UNIQUE_TAG}-amd64
2024-12-19 18:56:58 +00:00
fi
2024-04-26 01:11:12 +01:00
- name : Load and push arm64 image
run : |
docker load -i oci-image-arm64v8.tar.gz
2024-12-19 18:56:58 +00:00
if [ ! -z $DOCKERHUB_TOKEN ]; then
2025-01-26 01:05:41 +00:00
docker tag $(docker images -q conduwuit:main) ${DOCKER_HUB_REPO}:${UNIQUE_TAG}-arm64v8
docker push ${DOCKER_HUB_REPO}:${UNIQUE_TAG}-arm64v8
2024-12-19 18:56:58 +00:00
fi
2024-12-19 22:11:26 +00:00
if [ $GHCR_ENABLED = "true" ]; then
2025-01-26 01:05:41 +00:00
docker tag $(docker images -q conduwuit:main) ${GHCR_REPO}:${UNIQUE_TAG}-arm64v8
docker push ${GHCR_REPO}:${UNIQUE_TAG}-arm64v8
2024-12-19 22:11:26 +00:00
fi
2024-12-19 18:56:58 +00:00
if [ ! -z $GITLAB_TOKEN ]; then
2025-01-26 01:05:41 +00:00
docker tag $(docker images -q conduwuit:main) ${GLCR_REPO}:${UNIQUE_TAG}-arm64v8
docker push ${GLCR_REPO}:${UNIQUE_TAG}-arm64v8
2024-12-19 18:56:58 +00:00
fi
2024-04-26 01:11:12 +01:00
2024-07-24 19:32:26 -04:00
- name : Load and push amd64 debug image
run : |
docker load -i oci-image-amd64-debug.tar.gz
2024-12-19 18:56:58 +00:00
if [ ! -z $DOCKERHUB_TOKEN ]; then
2025-01-26 01:05:41 +00:00
docker tag $(docker images -q conduwuit:main) ${DOCKER_HUB_REPO}:${UNIQUE_TAG}-amd64-debug
docker push ${DOCKER_HUB_REPO}:${UNIQUE_TAG}-amd64-debug
2024-12-19 18:56:58 +00:00
fi
2024-12-19 22:11:26 +00:00
if [ $GHCR_ENABLED = "true" ]; then
2025-01-26 01:05:41 +00:00
docker tag $(docker images -q conduwuit:main) ${GHCR_REPO}:${UNIQUE_TAG}-amd64-debug
docker push ${GHCR_REPO}:${UNIQUE_TAG}-amd64-debug
2024-12-19 22:11:26 +00:00
fi
2024-12-19 18:56:58 +00:00
if [ ! -z $GITLAB_TOKEN ]; then
2025-01-26 01:05:41 +00:00
docker tag $(docker images -q conduwuit:main) ${GLCR_REPO}:${UNIQUE_TAG}-amd64-debug
docker push ${GLCR_REPO}:${UNIQUE_TAG}-amd64-debug
2024-12-19 18:56:58 +00:00
fi
2024-07-24 19:32:26 -04:00
- name : Load and push arm64 debug image
run : |
docker load -i oci-image-arm64v8-debug.tar.gz
2024-12-19 18:56:58 +00:00
if [ ! -z $DOCKERHUB_TOKEN ]; then
2025-01-26 01:05:41 +00:00
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
2025-01-26 22:16:32 +00:00
docker manifest create ${DOCKER_HUB_REPO}:${UNIQUE_TAG}-haswell --amend ${DOCKER_HUB_REPO}:${UNIQUE_TAG}-haswell
2025-01-26 20:39:08 +00:00
docker manifest create ${DOCKER_HUB_REPO}:${BRANCH_TAG}-haswell --amend ${DOCKER_HUB_REPO}:${UNIQUE_TAG}-haswell
2024-12-19 18:56:58 +00:00
fi
2025-01-26 01:05:41 +00:00
# GitHub Container Registry
2024-12-19 22:11:26 +00:00
if [ $GHCR_ENABLED = "true" ]; then
2025-01-26 21:30:15 -05:00
docker manifest create ${GHCR_REPO}:${UNIQUE_TAG}-haswell --amend ${GHCR_REPO}:${UNIQUE_TAG}-haswell
2025-01-26 20:39:08 +00:00
docker manifest create ${GHCR_REPO}:${BRANCH_TAG}-haswell --amend ${GHCR_REPO}:${UNIQUE_TAG}-haswell
2024-12-19 22:11:26 +00:00
fi
2025-01-26 01:05:41 +00:00
# GitLab Container Registry
2024-12-19 18:56:58 +00:00
if [ ! -z $GITLAB_TOKEN ]; then
2025-01-26 21:30:15 -05:00
docker manifest create ${GLCR_REPO}:${UNIQUE_TAG}-haswell --amend ${GLCR_REPO}:${UNIQUE_TAG}-haswell
2025-01-26 20:39:08 +00:00
docker manifest create ${GLCR_REPO}:${BRANCH_TAG}-haswell --amend ${GLCR_REPO}:${UNIQUE_TAG}-haswell
2024-12-19 18:56:58 +00:00
fi
2024-07-24 19:32:26 -04:00
2024-04-26 01:11:12 +01:00
- name : Create Docker combined manifests
run : |
2024-05-02 23:19:05 -04:00
# Dockerhub Container Registry
2024-12-19 18:56:58 +00:00
if [ ! -z $DOCKERHUB_TOKEN ]; then
2025-01-26 01:05:41 +00:00
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
2024-12-19 18:56:58 +00:00
fi
2024-05-02 23:19:05 -04:00
# GitHub Container Registry
2024-12-19 22:11:26 +00:00
if [ $GHCR_ENABLED = "true" ]; then
2025-01-26 01:05:41 +00:00
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
2024-12-19 22:11:26 +00:00
fi
2024-05-02 23:19:05 -04:00
# GitLab Container Registry
2024-12-19 18:56:58 +00:00
if [ ! -z $GITLAB_TOKEN ]; then
2025-01-26 01:05:41 +00:00
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
2024-12-19 18:56:58 +00:00
fi
2024-04-26 01:11:12 +01:00
2024-07-24 19:32:26 -04:00
- name : Create Docker combined debug manifests
run : |
# Dockerhub Container Registry
2024-12-19 18:56:58 +00:00
if [ ! -z $DOCKERHUB_TOKEN ]; then
2025-01-26 01:05:41 +00:00
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
2024-12-19 18:56:58 +00:00
fi
2024-07-24 19:32:26 -04:00
# GitHub Container Registry
2024-12-19 22:11:26 +00:00
if [ $GHCR_ENABLED = "true" ]; then
2025-01-26 01:05:41 +00:00
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
2024-12-19 22:11:26 +00:00
fi
2024-07-24 19:32:26 -04:00
# GitLab Container Registry
2024-12-19 18:56:58 +00:00
if [ ! -z $GITLAB_TOKEN ]; then
2025-01-26 01:05:41 +00:00
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
2024-12-19 18:56:58 +00:00
fi
2024-07-24 19:32:26 -04:00
2024-04-26 01:11:12 +01:00
- name : Push manifests to Docker registries
run : |
2024-12-19 18:56:58 +00:00
if [ ! -z $DOCKERHUB_TOKEN ]; then
2025-01-26 01:05:41 +00:00
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
2024-12-19 18:56:58 +00:00
fi
2024-12-19 22:11:26 +00:00
if [ $GHCR_ENABLED = "true" ]; then
2025-01-26 01:05:41 +00:00
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
2024-12-19 22:11:26 +00:00
fi
2024-12-19 18:56:58 +00:00
if [ ! -z $GITLAB_TOKEN ]; then
2025-01-26 01:05:41 +00:00
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
2024-12-19 18:56:58 +00:00
fi
2024-04-22 16:07:26 +01:00
2024-04-26 01:11:12 +01:00
- name : Add Image Links to Job Summary
run : |
2024-12-19 18:56:58 +00:00
if [ ! -z $DOCKERHUB_TOKEN ]; then
2025-01-26 01:05:41 +00:00
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
2024-12-19 18:56:58 +00:00
fi
2024-12-19 22:11:26 +00:00
if [ $GHCR_ENABLED = "true" ]; then
2025-01-26 01:05:41 +00:00
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
2024-12-19 22:11:26 +00:00
fi
2024-12-19 18:56:58 +00:00
if [ ! -z $GITLAB_TOKEN ]; then
2025-01-26 01:05:41 +00:00
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
2025-01-02 18:55:52 -05:00
fi