• R/O
  • SSH

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

A lambda-based C++ unit-testing framework.


Commit MetaInfo

Revisão561b04261741090a997a6ad4517f89d5e714ead5 (tree)
Hora2020-05-11 11:01:37
AutorKaz Nishimura <kazssym@linu...>
CommiterKaz Nishimura

Mensagem de Log

Move the build context for Docker

Mudança Sumário

Diff

diff -r 0674e81f368d -r 561b04261741 docker-compose.yml
--- a/docker-compose.yml Sun May 10 05:33:09 2020 +0900
+++ b/docker-compose.yml Mon May 11 11:01:37 2020 +0900
@@ -1,5 +1,5 @@
11 # docker-compose.yml
2-# Copyright (C) 2017-2019 Kaz Nishimura
2+# Copyright (C) 2017-2020 Kaz Nishimura
33 #
44 # Copying and distribution of this file, with or without modification, are
55 # permitted in any medium without royalty provided the copyright notice and
@@ -9,7 +9,7 @@
99 services:
1010 builder:
1111 build:
12- context: gcc
12+ context: docker/gcc
1313 image: kazssym/cppunitx-builder:gcc
1414 network_mode: host
1515 volumes:
diff -r 0674e81f368d -r 561b04261741 docker/gcc/.dockerignore
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/docker/gcc/.dockerignore Mon May 11 11:01:37 2020 +0900
@@ -0,0 +1,3 @@
1+**/*.orig
2+**/*.rej
3+**/*~
diff -r 0674e81f368d -r 561b04261741 docker/gcc/Dockerfile
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/docker/gcc/Dockerfile Mon May 11 11:01:37 2020 +0900
@@ -0,0 +1,17 @@
1+# Dockerfile for the CppUnitX builder image
2+# Copyright (C) 2018 Kaz Nishimura
3+#
4+# Copying and distribution of this file, with or without modification,
5+# are permitted in any medium without royalty provided the copyright
6+# notice and this notice are preserved. This file is offered as-is,
7+# without any warranty.
8+
9+FROM gcc:7
10+
11+RUN set -x && \
12+ apt-get update && \
13+ apt-get install --assume-yes --no-install-recommends \
14+ texinfo texlive && \
15+ rm -rf /var/lib/apt/lists/*
16+
17+ENV TEX=dviluatex PDFTEX=luatex
diff -r 0674e81f368d -r 561b04261741 gcc/.dockerignore
--- a/gcc/.dockerignore Sun May 10 05:33:09 2020 +0900
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,3 +0,0 @@
1-**/*.orig
2-**/*.rej
3-**/*~
diff -r 0674e81f368d -r 561b04261741 gcc/Dockerfile
--- a/gcc/Dockerfile Sun May 10 05:33:09 2020 +0900
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,17 +0,0 @@
1-# Dockerfile for the CppUnitX builder image
2-# Copyright (C) 2018 Kaz Nishimura
3-#
4-# Copying and distribution of this file, with or without modification,
5-# are permitted in any medium without royalty provided the copyright
6-# notice and this notice are preserved. This file is offered as-is,
7-# without any warranty.
8-
9-FROM gcc:7
10-
11-RUN set -x && \
12- apt-get update && \
13- apt-get install --assume-yes --no-install-recommends \
14- texinfo texlive && \
15- rm -rf /var/lib/apt/lists/*
16-
17-ENV TEX=dviluatex PDFTEX=luatex