@@ -12,7 +12,7 @@ Setting up a **cross-platform** environment for building and testing C++/C proje
1212
1313<!-- dprint-ignore -->
1414``` yaml
15- # GitHub Actions example:
15+ # GitHub Actions example:
1616 - name : Setup Cpp
1717 uses : aminya/setup-cpp@v1
1818 with :
@@ -70,22 +70,22 @@ NOTE: setup-cpp requires Nodejs 12 or higher. If Nodejs shipped with your distri
7070
7171# ### With executable
7272
73- Download the executable for your platform from [here](https://github.com/aminya/setup-cpp/releases/tag/v1.0.0 ), and run it with the available options. You can also automate downloading using `curl`, or other similar tools.
73+ Download the executable for your platform from [here](https://github.com/aminya/setup-cpp/releases/tag/v1.0.1 ), and run it with the available options. You can also automate downloading using `curl`, or other similar tools.
7474
7575` ` ` shell
7676# windows x64
77- curl -o ./setup-cpp.exe -LJ "https://github.com/aminya/setup-cpp/releases/download/v1.0.0 /setup-cpp-x64-windows.exe"
77+ curl -o ./setup-cpp.exe -LJ "https://github.com/aminya/setup-cpp/releases/download/v1.0.1 /setup-cpp-x64-windows.exe"
7878
7979# linux x64
80- curl -o ./setup-cpp -LJ "https://github.com/aminya/setup-cpp/releases/download/v1.0.0 /setup-cpp-x64-linux"
80+ curl -o ./setup-cpp -LJ "https://github.com/aminya/setup-cpp/releases/download/v1.0.1 /setup-cpp-x64-linux"
8181chmod +x ./setup-cpp
8282
8383# macos arm64
84- curl -o ./setup-cpp -LJ "https://github.com/aminya/setup-cpp/releases/download/v1.0.0 /setup-cpp-arm64-macos"
84+ curl -o ./setup-cpp -LJ "https://github.com/aminya/setup-cpp/releases/download/v1.0.1 /setup-cpp-arm64-macos"
8585chmod +x ./setup-cpp
8686
8787# macos x64
88- curl -o ./setup-cpp -LJ "https://github.com/aminya/setup-cpp/releases/download/v1.0.0 /setup-cpp-x64-macos"
88+ curl -o ./setup-cpp -LJ "https://github.com/aminya/setup-cpp/releases/download/v1.0.1 /setup-cpp-x64-macos"
8989chmod +x ./setup-cpp
9090` ` `
9191
@@ -205,22 +205,26 @@ The names are in the format `aminya/setup-cpp-<platform>:<platform_version>-<set
205205
206206Base image with `cmake, ninja, task, vcpkg, python, make, cppcheck, gcovr, doxygen, ccache, conan, meson, cmakelang`
207207
208+ ` ` ` dockerfile
209+ FROM aminya/setup-cpp-ubuntu:22.04-1.0.1 AS builder
210+ ` ` `
211+
208212Image with `llvm` and the base tools :
209213
210214` ` ` dockerfile
211- FROM aminya/setup-cpp-ubuntu-llvm:22.04-1.0.0 AS builder
215+ FROM aminya/setup-cpp-ubuntu-llvm:22.04-1.0.1 AS builder
212216` ` `
213217
214218Image with `gcc` and the base tools :
215219
216220` ` ` dockerfile
217- FROM aminya/setup-cpp-ubuntu-gcc:22.04-1.0.0 AS builder
221+ FROM aminya/setup-cpp-ubuntu-gcc:22.04-1.0.1 AS builder
218222` ` `
219223
220224Image with `mingw` and the base tools :
221225
222226` ` ` dockerfile
223- FROM aminya/setup-cpp-ubuntu-mingw:22.04-1.0.0 AS builder
227+ FROM aminya/setup-cpp-ubuntu-mingw:22.04-1.0.1 AS builder
224228` ` `
225229
226230# ### Fedora Images
@@ -230,25 +234,25 @@ FROM aminya/setup-cpp-ubuntu-mingw:22.04-1.0.0 AS builder
230234Base image with `cmake, ninja, task, vcpkg, python, make, cppcheck, gcovr, doxygen, ccache, conan, meson, cmakelang`
231235
232236` ` ` dockerfile
233- FROM aminya/setup-cpp-fedora-base :40-1.0.0 AS builder
237+ FROM aminya/setup-cpp-fedora:40-1.0.1 AS builder
234238` ` `
235239
236240Image with `llvm` and the base tools :
237241
238242` ` ` dockerfile
239- FROM aminya/setup-cpp-fedora-llvm:40-1.0.0 AS builder
243+ FROM aminya/setup-cpp-fedora-llvm:40-1.0.1 AS builder
240244` ` `
241245
242246Image with `gcc` and the base tools :
243247
244248` ` ` dockerfile
245- FROM aminya/setup-cpp-fedora-gcc:40-1.0.0 AS builder
249+ FROM aminya/setup-cpp-fedora-gcc:40-1.0.1 AS builder
246250` ` `
247251
248252Image with `mingw` and the base tools :
249253
250254` ` ` dockerfile
251- FROM aminya/setup-cpp-fedora-mingw:40-1.0.0 AS builder
255+ FROM aminya/setup-cpp-fedora-mingw:40-1.0.1 AS builder
252256` ` `
253257
254258</details>
@@ -260,25 +264,25 @@ FROM aminya/setup-cpp-fedora-mingw:40-1.0.0 AS builder
260264Base image with `cmake, ninja, task, vcpkg, python, make, cppcheck, gcovr, doxygen, ccache, conan, meson, cmakelang`
261265
262266` ` ` dockerfile
263- FROM aminya/setup-cpp-arch-base :base-1.0.0 AS builder
267+ FROM aminya/setup-cpp-arch:base-1.0.1 AS builder
264268` ` `
265269
266270Image with `llvm` and the base tools :
267271
268272` ` ` dockerfile
269- FROM aminya/setup-cpp-arch-llvm:base-1.0.0 AS builder
273+ FROM aminya/setup-cpp-arch-llvm:base-1.0.1 AS builder
270274` ` `
271275
272276Image with `gcc` and the base tools :
273277
274278` ` ` dockerfile
275- FROM aminya/setup-cpp-arch-gcc:base-1.0.0 AS builder
279+ FROM aminya/setup-cpp-arch-gcc:base-1.0.1 AS builder
276280` ` `
277281
278282Image with `mingw` and the base tools :
279283
280284` ` ` dockerfile
281- FROM aminya/setup-cpp-arch-mingw:base-1.0.0 AS builder
285+ FROM aminya/setup-cpp-arch-mingw:base-1.0.1 AS builder
282286` ` `
283287
284288</details>
@@ -297,7 +301,7 @@ RUN apt-get update -qq && \
297301 # install nodejs
298302 apt-get install -y --no-install-recommends nodejs npm && \
299303 # install setup-cpp
300- npm install -g setup-cpp@v1.0.0 && \
304+ npm install -g setup-cpp@v1.0.1 && \
301305 # install the compiler and tools
302306 NODE_OPTIONS="--enable-source-maps" \
303307 setup-cpp \
@@ -407,7 +411,7 @@ stages:
407411 apt-get install -y --no-install-recommends nodejs npm
408412
409413 # install setup-cpp
410- npm install -g setup-cpp@v1.0.0
414+ npm install -g setup-cpp@v1.0.1
411415
412416 # install the compiler and tools
413417 ./setup-cpp-x64-linux --compiler $compiler --cmake true --ninja true --ccache true --vcpkg true
0 commit comments