aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2020-08-26 23:12:22 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2020-08-26 23:12:22 +0300
commited6321461ada180099a6abb9fcd4ad57efced01f (patch)
treede6832b63630c1b74251658cf493534f2436b9ff
parentTravis: Focal is now available (diff)
downloadwinapi-debug-ed6321461ada180099a6abb9fcd4ad57efced01f.tar.gz
winapi-debug-ed6321461ada180099a6abb9fcd4ad57efced01f.zip
Travis: remove unnecessary .travis/
-rw-r--r--.travis/Dockerfile45
-rw-r--r--.travis/docker-compose.yml6
2 files changed, 0 insertions, 51 deletions
diff --git a/.travis/Dockerfile b/.travis/Dockerfile
deleted file mode 100644
index 28f1ab5..0000000
--- a/.travis/Dockerfile
+++ /dev/null
@@ -1,45 +0,0 @@
-FROM ubuntu:focal AS base
-
-FROM base AS builder
-
-RUN apt-get update -yq && \
- apt-get install -yq --no-install-recommends \
- # Used to download Boost:
- ca-certificates \
- # Used to bootstrap Boost:
- g++ \
- # Build scripts:
- python3 \
- # Build tools:
- cmake \
- make \
- mingw-w64
-
-ARG boost_version=1.65.0
-ARG platform=x86
-ARG configuration=Debug
-
-# We're on Travis, that's right.
-ENV TRAVIS_BUILD_DIR=/usr/src
-
-COPY ["cmake", "$TRAVIS_BUILD_DIR/cmake"]
-WORKDIR "$TRAVIS_BUILD_DIR"
-
-RUN cd cmake && \
- python3 -m project.ci.travis.boost \
- --mingw \
- -- \
- --with-filesystem \
- --with-program_options \
- --with-test
-
-COPY [".", "$TRAVIS_BUILD_DIR"]
-
-RUN cd cmake && \
- python3 -m project.ci.travis.cmake \
- --install /opt/pdb-repo \
- --mingw
-
-FROM base
-
-COPY --from=builder ["/opt/pdb-repo", "/opt/pdb-repo"]
diff --git a/.travis/docker-compose.yml b/.travis/docker-compose.yml
deleted file mode 100644
index 71fbbca..0000000
--- a/.travis/docker-compose.yml
+++ /dev/null
@@ -1,6 +0,0 @@
-version: '3'
-services:
- mingw_build:
- build:
- context: ..
- dockerfile: .travis/Dockerfile