Skip to content

Commit bd09e76

Browse files
committed
chore: v0.26.1 [skip test]
1 parent 5d323e0 commit bd09e76

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

README.md

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

6363
#### With executable
6464

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

6767
An example that installs llvm, cmake, ninja, ccache, and vcpkg:
6868

6969
```shell
7070
# windows example (open PowerShell as admin)
71-
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.26.0/setup-cpp-x64-windows.exe"
71+
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.26.1/setup-cpp-x64-windows.exe"
7272
./setup-cpp-x64-windows --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
7373

7474
RefreshEnv.cmd # activate cpp environment variables
7575
```
7676

7777
```shell
7878
# linux example
79-
wget "https://github.com/aminya/setup-cpp/releases/download/v0.26.0/setup-cpp-x64-linux"
79+
wget "https://github.com/aminya/setup-cpp/releases/download/v0.26.1/setup-cpp-x64-linux"
8080
chmod +x ./setup-cpp-x64-linux
8181
sudo ./setup-cpp-x64-linux --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
8282

@@ -85,7 +85,7 @@ source ~/.cpprc # activate cpp environment variables
8585

8686
```shell
8787
# macos example
88-
wget "https://github.com/aminya/setup-cpp/releases/download/v0.26.0/setup-cpp-x64-macos"
88+
wget "https://github.com/aminya/setup-cpp/releases/download/v0.26.1/setup-cpp-x64-macos"
8989
chmod +x ./setup-cpp-x64-macos
9090
sudo ./setup-cpp-x64-macos --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
9191

@@ -165,7 +165,7 @@ FROM ubuntu:22.04 AS base
165165
WORKDIR "/"
166166
RUN apt-get update -qq
167167
RUN apt-get install -y --no-install-recommends wget
168-
RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.26.0/setup-cpp-x64-linux"
168+
RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.26.1/setup-cpp-x64-linux"
169169
RUN chmod +x ./setup-cpp-x64-linux
170170

171171
# install llvm, cmake, ninja, and ccache
@@ -257,7 +257,7 @@ stages:
257257
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 1E9377A2BA9EF27F
258258

259259
.setup-cpp: &setup-cpp |
260-
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.26.0/setup-cpp-x64-linux"
260+
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.26.1/setup-cpp-x64-linux"
261261
chmod +x setup-cpp-x64-linux
262262
./setup-cpp-x64-linux --compiler $compiler --cmake true --ninja true --ccache true --vcpkg true
263263
source ~/.cpprc

dev/docker/ubuntu.dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ FROM ubuntu:22.04 AS base
55
WORKDIR "/"
66
RUN apt-get update -qq
77
RUN apt-get install -y --no-install-recommends wget
8-
RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.26.0/setup-cpp-x64-linux"
8+
RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.26.1/setup-cpp-x64-linux"
99
RUN chmod +x ./setup-cpp-x64-linux
1010

1111
# install llvm, cmake, ninja, and ccache

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "setup-cpp",
3-
"version": "0.26.0",
3+
"version": "0.26.1",
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)