File tree 4 files changed +9
-73
lines changed
4 files changed +9
-73
lines changed Original file line number Diff line number Diff line change 1
1
FROM mcr.microsoft.com/devcontainers/cpp:1-ubuntu-24.04
2
2
3
- ARG REINSTALL_CMAKE_VERSION_FROM_SOURCE="3.29.3"
4
-
5
- COPY ./reinstall-cmake.sh /tmp/
6
-
7
- RUN if [ "${REINSTALL_CMAKE_VERSION_FROM_SOURCE}" != "none" ]; then \
8
- chmod +x /tmp/reinstall-cmake.sh && /tmp/reinstall-cmake.sh ${REINSTALL_CMAKE_VERSION_FROM_SOURCE}; \
9
- fi \
10
- && rm -f /tmp/reinstall-cmake.sh
11
-
12
3
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
13
4
&& apt-get -y install --no-install-recommends \
14
5
software-properties-common fish
Original file line number Diff line number Diff line change 3
3
"build" : {
4
4
"dockerfile" : " Dockerfile"
5
5
},
6
+ "features" : {
7
+ // Switch to the "official" version as soon as
8
+ // https://github.com/devcontainers-community/features-cmake/pull/2
9
+ // merged
10
+ "ghcr.io/alexdenisov/features/feature-cmake" : {
11
+ "version" : " 3.29.3"
12
+ }
13
+ },
6
14
"postCreateCommand" : " sh .devcontainer/post_create.sh"
7
15
}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 6
6
branches : ["main"]
7
7
jobs :
8
8
build-and-test :
9
- runs-on : ${{ matrix.os }}
10
- strategy :
11
- fail-fast : false
12
- matrix :
13
- os : [macos-latest]
9
+ runs-on : macos-latest
14
10
steps :
15
11
- uses : actions/checkout@v4
16
12
with :
You can’t perform that action at this time.
0 commit comments