Skip to content

Commit a296e2c

Browse files
committed
chore: v0.35.7 [skip test]
1 parent 4083828 commit a296e2c

16 files changed

+21
-21
lines changed

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -58,21 +58,21 @@ NOTE: setup-cpp requires Nodejs 12 or higher. If Nodejs shipped with your distri
5858

5959
#### With executable
6060

61-
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.
61+
Download the executable for your platform from [here](https://github.com/aminya/setup-cpp/releases/tag/v0.35.7), and run it with the available options. You can also automate downloading using `wget`, `curl`, or other similar tools.
6262

6363
An example that installs llvm, cmake, ninja, ccache, and vcpkg:
6464

6565
```shell
6666
# windows example (open PowerShell as admin)
67-
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.35.6/setup-cpp-x64-windows.exe"
67+
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.35.7/setup-cpp-x64-windows.exe"
6868
./setup-cpp-x64-windows --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
6969

7070
RefreshEnv.cmd # activate cpp environment variables
7171
```
7272

7373
```shell
7474
# linux example
75-
wget "https://github.com/aminya/setup-cpp/releases/download/v0.35.6/setup-cpp-x64-linux"
75+
wget "https://github.com/aminya/setup-cpp/releases/download/v0.35.7/setup-cpp-x64-linux"
7676
chmod +x ./setup-cpp-x64-linux
7777
sudo ./setup-cpp-x64-linux --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
7878

@@ -81,7 +81,7 @@ source ~/.cpprc # activate cpp environment variables
8181

8282
```shell
8383
# macos example
84-
wget "https://github.com/aminya/setup-cpp/releases/download/v0.35.6/setup-cpp-x64-macos"
84+
wget "https://github.com/aminya/setup-cpp/releases/download/v0.35.7/setup-cpp-x64-macos"
8585
chmod +x ./setup-cpp-x64-macos
8686
sudo ./setup-cpp-x64-macos --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
8787

@@ -161,7 +161,7 @@ RUN apt-get update -qq && \
161161
# install nodejs
162162
apt-get install -y --no-install-recommends nodejs npm && \
163163
# install setup-cpp
164-
npm install -g [email protected].6 && \
164+
npm install -g [email protected].7 && \
165165
# install the compiler and tools
166166
setup-cpp \
167167
--nala true \
@@ -270,7 +270,7 @@ stages:
270270
apt-get install -y --no-install-recommends nodejs npm
271271

272272
# install setup-cpp
273-
npm install -g [email protected].6
273+
npm install -g [email protected].7
274274

275275
# install the compiler and tools
276276
./setup-cpp-x64-linux --compiler $compiler --cmake true --ninja true --ccache true --vcpkg true

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].6 && \
9+
npm install -g [email protected].7 && \
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].6 && \
9+
npm install -g [email protected].7 && \
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].6 && \
7+
npm install -g [email protected].7 && \
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].6 && \
7+
npm install -g [email protected].7 && \
88
# install the compiler and tools
99
setup-cpp \
1010
--compiler llvm \

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ RUN apt-get update -qq && \
1111
apt-get update -qq && \
1212
apt-get install -y --no-install-recommends nodejs && \
1313
# install setup-cpp
14-
npm install -g [email protected].6 && \
14+
npm install -g [email protected].7 && \
1515
# install the compiler and tools
1616
setup-cpp \
1717
--nala true \

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].6 && \
8+
npm install -g [email protected].7 && \
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].6 && \
8+
npm install -g [email protected].7 && \
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.6"
3+
"version": "0.35.7"
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.6",
3+
"version": "0.35.7",
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)