mirror of
https://github.com/zardus/ctf-tools
synced 2024-11-10 08:24:12 +00:00
12 lines
423 B
Text
12 lines
423 B
Text
language: bash
|
|
sudo: required
|
|
services:
|
|
- docker
|
|
before_install:
|
|
- if [ "$DISTRO" = "archlinux" ]; then docker build -t ctftools -f Dockerfile.archlinux .; fi
|
|
- if [ "$DISTRO" = "fedora" ]; then docker build -t ctftools -f Dockerfile.fedora .; fi
|
|
- if [ "$DISTRO" = "xenial" ]; then docker build -t ctftools -f Dockerfile.xenial .; fi
|
|
- if [ "$DISTRO" = "trusty" ]; then docker build -t ctftools -f Dockerfile .; fi
|
|
|
|
env:
|
|
|