mirror of
https://github.com/zardus/ctf-tools
synced 2025-03-04 15:17:12 +00:00
13 lines
423 B
Text
13 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:
|
||
|
|