File: cibuild-docker

package info (click to toggle)
ruby-github-pages-health-check 1.19.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 324 kB
  • sloc: ruby: 1,135; sh: 53; makefile: 2
file content (11 lines) | stat: -rwxr-xr-x 352 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash

: ${RUBY_VERSION:="3.2"}
docker build -t github-pages-health-check --build-arg RUBY_VERSION=$RUBY_VERSION .
if [ -n "$DEBUG" ]; then
  # Run a shell.
  docker run -it --rm -v $(pwd):/app/github-pages-health-check github-pages-health-check
else
  # Run CI
  docker run --rm github-pages-health-check script/cibuild --profile --fail-fast
fi