ci: add script for running CI locally
This commit is contained in:
parent
cc27750a79
commit
d118ffb88b
29
ci/ci.sh
Executable file
29
ci/ci.sh
Executable file
@ -0,0 +1,29 @@
|
||||
#!/bin/bash
|
||||
set -evuo pipefail
|
||||
|
||||
# Use podman if available, otherwise use docker.
|
||||
# Fails if neither is found in PATH
|
||||
OCI_RUNTIME=$(which podman || which docker)
|
||||
REPO_NAME=$(basename "${PWD}")
|
||||
JOB_NAME="${1}"
|
||||
JOB_CONTAINER=$((grep CONTAINER_NAME ci/jobs/${JOB_NAME}/config.ini | cut -d' ' -f 3) || echo "${REPO_NAME}")
|
||||
|
||||
echo "${JOB_CONTAINER}"
|
||||
|
||||
if [ "${JOB_CONTAINER}" = "${REPO_NAME}" ] ; then
|
||||
"${OCI_RUNTIME}" build \
|
||||
-t "${JOB_CONTAINER}" \
|
||||
-f ci/Containerfile .
|
||||
fi
|
||||
|
||||
"${OCI_RUNTIME}" run \
|
||||
--rm \
|
||||
-ti \
|
||||
--volume "${PWD}":/workdir \
|
||||
--workdir /workdir \
|
||||
"${JOB_CONTAINER}" \
|
||||
ci/jobs/"${JOB_NAME}"/job.sh
|
||||
|
||||
top_dir=$(dirname "${BASH_SOURCE[0]}")
|
||||
|
||||
#"${top_dir}"/build.sh
|
Loading…
Reference in New Issue
Block a user