Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,5 +72,8 @@
"prettier.enable": false,
"javascript.preferences.importModuleSpecifierEnding": "js",
"typescript.preferences.importModuleSpecifierEnding": "js",
"eslint.useESLintClass": true
"eslint.useESLintClass": true,
"yaml.schemas": {
"https://json.schemastore.org/container-structure-test.json": "/dev/docker/ci/tests/*.yml"
}
}
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -338,15 +338,15 @@ RUN apt-get update -qq && \
rm -rf /var/lib/apt/lists/* && \
rm -rf /tmp/*

ENTRYPOINT ["/bin/bash"]
SHELL ["/bin/bash", "-l", "-c"]
ENTRYPOINT ["/bin/bash", "-l"]

#### Building (example)
FROM setup-cpp-ubuntu AS builder

COPY ./dev/cpp_vcpkg_project /home/app
WORKDIR /home/app
RUN bash -c 'source ~/.cpprc \
&& task build'
RUN task build

#### Running environment
# use a fresh image as the runner
Expand Down
3 changes: 2 additions & 1 deletion dev/docker/ci/arch-gcc.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@ RUN node --enable-source-maps /usr/lib/setup-cpp/setup-cpp.js \
rm -rf /var/cache/pacman/pkg/* && \
rm -rf /tmp/*

ENTRYPOINT ["/bin/bash"]
SHELL ["/bin/bash", "-l", "-c"]
ENTRYPOINT ["/bin/bash", "-l"]
68 changes: 0 additions & 68 deletions dev/docker/ci/arch-gcc.yml

This file was deleted.

3 changes: 2 additions & 1 deletion dev/docker/ci/arch-llvm.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@ RUN node --enable-source-maps /usr/lib/setup-cpp/setup-cpp.js \
rm -rf /var/cache/pacman/pkg/* && \
rm -rf /tmp/*

ENTRYPOINT ["/bin/bash"]
SHELL ["/bin/bash", "-l", "-c"]
ENTRYPOINT ["/bin/bash", "-l"]
68 changes: 0 additions & 68 deletions dev/docker/ci/arch-llvm.yml

This file was deleted.

3 changes: 2 additions & 1 deletion dev/docker/ci/arch-mingw.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@ RUN node --enable-source-maps /usr/lib/setup-cpp/setup-cpp.js \
rm -rf /var/cache/pacman/pkg/* && \
rm -rf /tmp/*

ENTRYPOINT ["/bin/bash"]
SHELL ["/bin/bash", "-l", "-c"]
ENTRYPOINT ["/bin/bash", "-l"]
79 changes: 0 additions & 79 deletions dev/docker/ci/arch-mingw.yml

This file was deleted.

3 changes: 2 additions & 1 deletion dev/docker/ci/arch.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,5 @@ RUN pacman -Syuu --noconfirm && \
rm -rf /var/cache/pacman/pkg/* && \
rm -rf /tmp/*

ENTRYPOINT ["/bin/bash"]
SHELL ["/bin/bash", "-l", "-c"]
ENTRYPOINT ["/bin/bash", "-l"]
64 changes: 0 additions & 64 deletions dev/docker/ci/arch.yml

This file was deleted.

35 changes: 0 additions & 35 deletions dev/docker/ci/docker-test.mjs

This file was deleted.

3 changes: 2 additions & 1 deletion dev/docker/ci/fedora-gcc.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@ RUN node --enable-source-maps /usr/lib/setup-cpp/setup-cpp.js \
dnf clean all && \
rm -rf /tmp/*

ENTRYPOINT ["/bin/bash"]
SHELL ["/bin/bash", "-l", "-c"]
ENTRYPOINT ["/bin/bash", "-l"]
Loading
Loading