Skip to content

Commit 5962369

Browse files
committed
chore: v0.38.3 [skip test]
1 parent 933c6ea commit 5962369

17 files changed

+31
-31
lines changed

.github/workflows/CI.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -241,12 +241,12 @@ jobs:
241241
pnpm:
242242
- 9
243243
container:
244-
- { file: "ubuntu-llvm.dockerfile", image: "setup-cpp-ubuntu-llvm", tag: "22.04-0.38.2" }
245-
- { file: "fedora-llvm.dockerfile", image: "setup-cpp-fedora-llvm", tag: "40-0.38.2" }
246-
- { file: "arch-llvm.dockerfile", image: "setup-cpp-arch-llvm", tag: "base-0.38.2" }
247-
- { file: "ubuntu-mingw.dockerfile", image: "setup-cpp-ubuntu-mingw", tag: "22.04-0.38.2" }
248-
# - { file: "fedora-mingw.dockerfile", image: "setup-cpp-fedora-mingw", tag: "40-0.38.2" }
249-
# - { file: "arch-mingw.dockerfile", image: "setup-cpp-arch-mingw", tag: "base-0.38.2" }
244+
- { file: "ubuntu-llvm.dockerfile", image: "setup-cpp-ubuntu-llvm", tag: "22.04-0.38.3" }
245+
- { file: "fedora-llvm.dockerfile", image: "setup-cpp-fedora-llvm", tag: "40-0.38.3" }
246+
- { file: "arch-llvm.dockerfile", image: "setup-cpp-arch-llvm", tag: "base-0.38.3" }
247+
- { file: "ubuntu-mingw.dockerfile", image: "setup-cpp-ubuntu-mingw", tag: "22.04-0.38.3" }
248+
# - { file: "fedora-mingw.dockerfile", image: "setup-cpp-fedora-mingw", tag: "40-0.38.3" }
249+
# - { file: "arch-mingw.dockerfile", image: "setup-cpp-arch-mingw", tag: "base-0.38.3" }
250250
steps:
251251
- uses: actions/checkout@v4
252252
with:

README.md

+10-10
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.38.2), 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.38.3), 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.38.2/setup-cpp-x64-windows.exe"
67+
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.38.3/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.38.2/setup-cpp-x64-linux"
75+
wget "https://github.com/aminya/setup-cpp/releases/download/v0.38.3/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.38.2/setup-cpp-x64-macos"
84+
wget "https://github.com/aminya/setup-cpp/releases/download/v0.38.3/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

@@ -156,19 +156,19 @@ To provide fast development environments, `setup-cpp` provides several prebuilt
156156
You can use these images as a base image for your project.
157157

158158
```dockerfile
159-
FROM aminya/setup-cpp-ubuntu-llvm:22.04-0.38.2 AS builder
159+
FROM aminya/setup-cpp-ubuntu-llvm:22.04-0.38.3 AS builder
160160
```
161161

162162
```dockerfile
163-
FROM aminya/setup-cpp-ubuntu-mingw:22.04-0.38.2 AS builder
163+
FROM aminya/setup-cpp-ubuntu-mingw:22.04-0.38.3 AS builder
164164
```
165165

166166
```dockerfile
167-
FROM aminya/setup-cpp-fedora-llvm:40-0.38.2 AS builder
167+
FROM aminya/setup-cpp-fedora-llvm:40-0.38.3 AS builder
168168
```
169169

170170
```dockerfile
171-
FROM aminya/setup-cpp-arch-llvm:base-0.38.2 AS builder
171+
FROM aminya/setup-cpp-arch-llvm:base-0.38.3 AS builder
172172
```
173173

174174
The names are in the format `aminya/setup-cpp-<platform>-<compiler>:<platform_version>-<setup_cpp_version>`.
@@ -187,7 +187,7 @@ RUN apt-get update -qq && \
187187
# install nodejs
188188
apt-get install -y --no-install-recommends nodejs npm && \
189189
# install setup-cpp
190-
npm install -g [email protected].2 && \
190+
npm install -g [email protected].3 && \
191191
# install the compiler and tools
192192
setup-cpp \
193193
--nala true \
@@ -296,7 +296,7 @@ stages:
296296
apt-get install -y --no-install-recommends nodejs npm
297297

298298
# install setup-cpp
299-
npm install -g [email protected].2
299+
npm install -g [email protected].3
300300

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

dev/docker/setup-cpp/setup-cpp-arch-llvm.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].2 && \
9+
npm install -g [email protected].3 && \
1010
# install the compiler and tools
1111
setup-cpp \
1212
--compiler llvm \

dev/docker/setup-cpp/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].2 && \
9+
npm install -g [email protected].3 && \
1010
# install the compiler and tools
1111
setup-cpp \
1212
--compiler mingw \

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

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

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ FROM fedora:40 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].2 && \
7+
npm install -g [email protected].3 && \
88
# install the compiler and tools
99
setup-cpp \
1010
--compiler mingw \

dev/docker/setup-cpp/setup-cpp-ubuntu-20.0.4-llvm.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].2 && \
14+
npm install -g [email protected].3 && \
1515
# install the compiler and tools
1616
setup-cpp \
1717
--nala true \

dev/docker/setup-cpp/setup-cpp-ubuntu-llvm.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].2 && \
8+
npm install -g [email protected].3 && \
99
# install the compiler and tools
1010
setup-cpp \
1111
--nala true \

dev/docker/setup-cpp/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].2 && \
8+
npm install -g [email protected].3 && \
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.38.2"
3+
"version": "0.38.3"
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.38.2",
3+
"version": "0.38.3",
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)