Skip to content

Commit 436e27c

Browse files
committed
chore: v0.35.6 [skip test]
1 parent 6a37ff7 commit 436e27c

15 files changed

+20
-20
lines changed

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -56,21 +56,21 @@ NOTE: On Unix systems, if you are already a root user (e.g., in a GitLab runner
5656

5757
#### With executable
5858

59-
Download the executable for your platform from [here](https://github.com/aminya/setup-cpp/releases/tag/v0.35.5), and run it with the available options. You can also automate downloading using `wget`, `curl`, or other similar tools.
59+
Download the executable for your platform from [here](https://github.com/aminya/setup-cpp/releases/tag/v0.35.6), and run it with the available options. You can also automate downloading using `wget`, `curl`, or other similar tools.
6060

6161
An example that installs llvm, cmake, ninja, ccache, and vcpkg:
6262

6363
```shell
6464
# windows example (open PowerShell as admin)
65-
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.35.5/setup-cpp-x64-windows.exe"
65+
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.35.6/setup-cpp-x64-windows.exe"
6666
./setup-cpp-x64-windows --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
6767

6868
RefreshEnv.cmd # activate cpp environment variables
6969
```
7070

7171
```shell
7272
# linux example
73-
wget "https://github.com/aminya/setup-cpp/releases/download/v0.35.5/setup-cpp-x64-linux"
73+
wget "https://github.com/aminya/setup-cpp/releases/download/v0.35.6/setup-cpp-x64-linux"
7474
chmod +x ./setup-cpp-x64-linux
7575
sudo ./setup-cpp-x64-linux --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
7676

@@ -79,7 +79,7 @@ source ~/.cpprc # activate cpp environment variables
7979

8080
```shell
8181
# macos example
82-
wget "https://github.com/aminya/setup-cpp/releases/download/v0.35.5/setup-cpp-x64-macos"
82+
wget "https://github.com/aminya/setup-cpp/releases/download/v0.35.6/setup-cpp-x64-macos"
8383
chmod +x ./setup-cpp-x64-macos
8484
sudo ./setup-cpp-x64-macos --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
8585

@@ -159,7 +159,7 @@ RUN apt-get update -qq && \
159159
# install nodejs
160160
apt-get install -y --no-install-recommends nodejs npm && \
161161
# install setup-cpp
162-
npm install -g [email protected].5 && \
162+
npm install -g [email protected].6 && \
163163
# install the compiler and tools
164164
setup-cpp \
165165
--nala true \
@@ -269,7 +269,7 @@ stages:
269269
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 1E9377A2BA9EF27F
270270

271271
.setup-cpp: &setup-cpp |
272-
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.35.5/setup-cpp-x64-linux"
272+
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.35.6/setup-cpp-x64-linux"
273273
chmod +x setup-cpp-x64-linux
274274
./setup-cpp-x64-linux --compiler $compiler --cmake true --ninja true --ccache true --vcpkg true
275275
source ~/.cpprc

dev/docker/setup-cpp-arch-mingw.dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ RUN pacman -Syuu --noconfirm && \
66
# install nodejs
77
pacman -S --noconfirm --needed nodejs npm && \
88
# install setup-cpp
9-
npm install -g [email protected].5 && \
9+
npm install -g [email protected].6 && \
1010
# install the compiler and tools
1111
setup-cpp \
1212
--compiler mingw \

dev/docker/setup-cpp-arch.dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ RUN pacman -Syuu --noconfirm && \
66
# install nodejs
77
pacman -S --noconfirm --needed nodejs npm && \
88
# install setup-cpp
9-
npm install -g [email protected].5 && \
9+
npm install -g [email protected].6 && \
1010
# install the compiler and tools
1111
setup-cpp \
1212
--compiler llvm \

dev/docker/setup-cpp-fedora-mingw.dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ FROM fedora:38 as setup-cpp-fedora-mingw
44
# install nodejs
55
RUN dnf -y install nodejs npm && \
66
# install setup-cpp
7-
npm install -g [email protected].5 && \
7+
npm install -g [email protected].6 && \
88
# install the compiler and tools
99
setup-cpp \
1010
--compiler mingw \

dev/docker/setup-cpp-fedora.dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ FROM fedora:38 as setup-cpp-fedora
44
# install nodejs
55
RUN dnf -y install nodejs npm && \
66
# install setup-cpp
7-
npm install -g [email protected].5 && \
7+
npm install -g [email protected].6 && \
88
# install the compiler and tools
99
setup-cpp \
1010
--compiler llvm \

dev/docker/setup-cpp-ubuntu-mingw.dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ RUN apt-get update -qq && \
55
# install nodejs
66
apt-get install -y --no-install-recommends nodejs npm && \
77
# install setup-cpp
8-
npm install -g [email protected].5 && \
8+
npm install -g [email protected].6 && \
99
# install the compiler and tools
1010
setup-cpp \
1111
--nala true \

dev/docker/setup-cpp-ubuntu.dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ RUN apt-get update -qq && \
55
# install nodejs
66
apt-get install -y --no-install-recommends nodejs npm && \
77
# install setup-cpp
8-
npm install -g [email protected].5 && \
8+
npm install -g [email protected].6 && \
99
# install the compiler and tools
1010
setup-cpp \
1111
--nala true \

dist/actions/setup-cpp.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/actions/setup-cpp.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/legacy/setup-cpp.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/legacy/setup-cpp.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/modern/setup-cpp.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/modern/setup-cpp.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-version.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"name": "setup-cpp",
3-
"version": "0.35.5"
3+
"version": "0.35.6"
44
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "setup-cpp",
3-
"version": "0.35.5",
3+
"version": "0.35.6",
44
"description": "Install all the tools required for building and testing C++/C projects.",
55
"repository": "https://github.com/aminya/setup-cpp",
66
"license": "Apache-2.0",

0 commit comments

Comments
 (0)