Skip to content

Commit d485b24

Browse files
committed
chore: v0.44.0 [skip test]
1 parent 9935084 commit d485b24

13 files changed

+39
-33
lines changed

.github/workflows/CI.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -247,12 +247,12 @@ jobs:
247247
pnpm:
248248
- 9.11.0
249249
container:
250-
- { file: "ubuntu-llvm.dockerfile", image: "setup-cpp-ubuntu-llvm", tag: "22.04-0.43.0" }
251-
- { file: "fedora-llvm.dockerfile", image: "setup-cpp-fedora-llvm", tag: "40-0.43.0" }
252-
- { file: "arch-llvm.dockerfile", image: "setup-cpp-arch-llvm", tag: "base-0.43.0" }
253-
- { file: "ubuntu-mingw.dockerfile", image: "setup-cpp-ubuntu-mingw", tag: "22.04-0.43.0" }
254-
# - { file: "fedora-mingw.dockerfile", image: "setup-cpp-fedora-mingw", tag: "40-0.43.0" }
255-
# - { file: "arch-mingw.dockerfile", image: "setup-cpp-arch-mingw", tag: "base-0.43.0" }
250+
- { file: "ubuntu-llvm.dockerfile", image: "setup-cpp-ubuntu-llvm", tag: "22.04-0.44.0" }
251+
- { file: "fedora-llvm.dockerfile", image: "setup-cpp-fedora-llvm", tag: "40-0.44.0" }
252+
- { file: "arch-llvm.dockerfile", image: "setup-cpp-arch-llvm", tag: "base-0.44.0" }
253+
- { file: "ubuntu-mingw.dockerfile", image: "setup-cpp-ubuntu-mingw", tag: "22.04-0.44.0" }
254+
# - { file: "fedora-mingw.dockerfile", image: "setup-cpp-fedora-mingw", tag: "40-0.44.0" }
255+
# - { file: "arch-mingw.dockerfile", image: "setup-cpp-arch-mingw", tag: "base-0.44.0" }
256256
steps:
257257
- uses: actions/checkout@v4
258258
with:

README.md

+22-16
Original file line numberDiff line numberDiff line change
@@ -57,22 +57,22 @@ NOTE: setup-cpp requires Nodejs 12 or higher. If Nodejs shipped with your distri
5757

5858
#### With executable
5959

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

6262
```shell
6363
# windows x64
64-
curl -o ./setup-cpp.exe -LJ "https://github.com/aminya/setup-cpp/releases/download/v0.43.0/setup-cpp-x64-windows.exe"
64+
curl -o ./setup-cpp.exe -LJ "https://github.com/aminya/setup-cpp/releases/download/v0.44.0/setup-cpp-x64-windows.exe"
6565

6666
# linux x64
67-
curl -o ./setup-cpp -LJ "https://github.com/aminya/setup-cpp/releases/download/v0.43.0/setup-cpp-x64-linux"
67+
curl -o ./setup-cpp -LJ "https://github.com/aminya/setup-cpp/releases/download/v0.44.0/setup-cpp-x64-linux"
6868
chmod +x ./setup-cpp
6969

7070
# macos arm64
71-
curl -o ./setup-cpp -LJ "https://github.com/aminya/setup-cpp/releases/download/v0.43.0/setup-cpp-arm64-macos"
71+
curl -o ./setup-cpp -LJ "https://github.com/aminya/setup-cpp/releases/download/v0.44.0/setup-cpp-arm64-macos"
7272
chmod +x ./setup-cpp
7373

7474
# macos x64
75-
curl -o ./setup-cpp -LJ "https://github.com/aminya/setup-cpp/releases/download/v0.43.0/setup-cpp-x64-macos"
75+
curl -o ./setup-cpp -LJ "https://github.com/aminya/setup-cpp/releases/download/v0.44.0/setup-cpp-x64-macos"
7676
chmod +x ./setup-cpp
7777
```
7878

@@ -131,13 +131,19 @@ jobs:
131131
uses: actions/cache@v3
132132
with:
133133
path: |
134+
./build/
134135
~/vcpkg
135-
./build/vcpkg_installed
136-
${{ env.HOME }}/.cache/vcpkg/archives
136+
~/.cache/vcpkg/archives
137+
${{ env.LOCALAPPDATA }}/vcpkg/archives
138+
${{ env.APPDATA }}/vcpkg/archives
137139
${{ env.XDG_CACHE_HOME }}/vcpkg/archives
138-
${{ env.LOCALAPPDATA }}\vcpkg\archives
139-
${{ env.APPDATA }}\vcpkg\archives
140-
key: ${{ runner.os }}-${{ matrix.compiler }}-${{ env.BUILD_TYPE }}-${{ hashFiles('**/CMakeLists.txt') }}-${{ hashFiles('./vcpkg.json')}}
140+
~/.cache/ccache
141+
~/.ccache
142+
~/.config/ccache
143+
~/Library/Caches/ccache
144+
${{ env.LOCALAPPDATA }}/ccache
145+
${{ env.XDG_CACHE_HOME }}/ccache
146+
key: ${{ runner.os }}-${{ matrix.compiler }}-${{ env.BUILD_TYPE }}-${{ hashFiles('**/CMakeLists.txt', './vcpkg.json') }}
141147
restore-keys: |
142148
${{ runner.os }}-${{ env.BUILD_TYPE }}-
143149
@@ -161,19 +167,19 @@ To provide fast development environments, `setup-cpp` provides several prebuilt
161167
You can use these images as a base image for your project.
162168

163169
```dockerfile
164-
FROM aminya/setup-cpp-ubuntu-llvm:22.04-0.43.0 AS builder
170+
FROM aminya/setup-cpp-ubuntu-llvm:22.04-0.44.0 AS builder
165171
```
166172

167173
```dockerfile
168-
FROM aminya/setup-cpp-ubuntu-mingw:22.04-0.43.0 AS builder
174+
FROM aminya/setup-cpp-ubuntu-mingw:22.04-0.44.0 AS builder
169175
```
170176

171177
```dockerfile
172-
FROM aminya/setup-cpp-fedora-llvm:40-0.43.0 AS builder
178+
FROM aminya/setup-cpp-fedora-llvm:40-0.44.0 AS builder
173179
```
174180

175181
```dockerfile
176-
FROM aminya/setup-cpp-arch-llvm:base-0.43.0 AS builder
182+
FROM aminya/setup-cpp-arch-llvm:base-0.44.0 AS builder
177183
```
178184

179185
The names are in the format `aminya/setup-cpp-<platform>-<compiler>:<platform_version>-<setup_cpp_version>`.
@@ -192,7 +198,7 @@ RUN apt-get update -qq && \
192198
# install nodejs
193199
apt-get install -y --no-install-recommends nodejs npm && \
194200
# install setup-cpp
195-
npm install -g setup-cpp@v0.43.0 && \
201+
npm install -g setup-cpp@v0.44.0 && \
196202
# install the compiler and tools
197203
setup-cpp \
198204
--nala true \
@@ -301,7 +307,7 @@ stages:
301307
apt-get install -y --no-install-recommends nodejs npm
302308

303309
# install setup-cpp
304-
npm install -g setup-cpp@v0.43.0
310+
npm install -g setup-cpp@v0.44.0
305311

306312
# install the compiler and tools
307313
./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 setup-cpp@v0.43.0 && \
9+
npm install -g setup-cpp@v0.44.0 && \
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 setup-cpp@v0.43.0 && \
9+
npm install -g setup-cpp@v0.44.0 && \
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 setup-cpp@v0.43.0 && \
7+
npm install -g setup-cpp@v0.44.0 && \
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 setup-cpp@v0.43.0 && \
7+
npm install -g setup-cpp@v0.44.0 && \
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 setup-cpp@v0.43.0 && \
14+
npm install -g setup-cpp@v0.44.0 && \
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 setup-cpp@v0.43.0 && \
8+
npm install -g setup-cpp@v0.44.0 && \
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 setup-cpp@v0.43.0 && \
8+
npm install -g setup-cpp@v0.44.0 && \
99
# install the compiler and tools
1010
setup-cpp \
1111
--nala true \

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/modern/setup-cpp.mjs

+1-1
Large diffs are not rendered by default.

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.43.0"
3+
"version": "0.44.0"
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.43.0",
3+
"version": "0.44.0",
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)