a71d1644e8
Use the Toolforge build service to build a custom container that we then run using the jobs service. Bug: T370565
6 lines
161 B
Bash
Executable file
6 lines
161 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -Eeuo pipefail
|
|
REF=${1:-main}
|
|
REPO=https://gitlab.wikimedia.org/toolforge-repos/ircservserv
|
|
|
|
exec toolforge build start --ref $REF $REPO
|