Skip to content

Commit ced47e4

Browse files
committed
chore: v0.26.0 [skip test]
1 parent 6908737 commit ced47e4

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
@@ -64,23 +64,23 @@ NOTE: On Unix systems, if you are already a root user (e.g., in a GitLab runner
6464

6565
You can download a self-contained executable file and run it with the available options.
6666

67-
Download the executable for your platform from [here](https://github.com/aminya/setup-cpp/releases/tag/v0.25.1), and run it with the available options.
67+
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.
6868

6969
Tip: You can automate downloading using `wget`, `curl`, or other similar tools.
7070

7171
An example that installs llvm, cmake, ninja, ccache, and vcpkg:
7272

7373
```shell
7474
# windows example (open PowerShell as admin)
75-
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.25.1/setup-cpp-x64-windows.exe"
75+
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.26.0/setup-cpp-x64-windows.exe"
7676
./setup-cpp-x64-windows --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
7777

7878
RefreshEnv.cmd # activate cpp environment variables
7979
```
8080

8181
```shell
8282
# linux example
83-
wget "https://github.com/aminya/setup-cpp/releases/download/v0.25.1/setup-cpp-x64-linux"
83+
wget "https://github.com/aminya/setup-cpp/releases/download/v0.26.0/setup-cpp-x64-linux"
8484
chmod +x ./setup-cpp-x64-linux
8585
sudo ./setup-cpp-x64-linux --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
8686

@@ -89,7 +89,7 @@ source ~/.cpprc # activate cpp environment variables
8989

9090
```shell
9191
# macos example
92-
wget "https://github.com/aminya/setup-cpp/releases/download/v0.25.1/setup-cpp-x64-macos"
92+
wget "https://github.com/aminya/setup-cpp/releases/download/v0.26.0/setup-cpp-x64-macos"
9393
chmod +x ./setup-cpp-x64-macos
9494
sudo ./setup-cpp-x64-macos --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
9595

@@ -169,7 +169,7 @@ FROM ubuntu:22.04 AS base
169169
WORKDIR "/"
170170
RUN apt-get update -qq
171171
RUN apt-get install -y --no-install-recommends wget
172-
RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.25.1/setup-cpp-x64-linux"
172+
RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.26.0/setup-cpp-x64-linux"
173173
RUN chmod +x ./setup-cpp-x64-linux
174174

175175
# install llvm, cmake, ninja, and ccache
@@ -261,7 +261,7 @@ stages:
261261
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 1E9377A2BA9EF27F
262262

263263
.setup-cpp: &setup-cpp |
264-
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.25.1/setup-cpp-x64-linux"
264+
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.26.0/setup-cpp-x64-linux"
265265
chmod +x setup-cpp-x64-linux
266266
./setup-cpp-x64-linux --compiler $compiler --cmake true --ninja true --ccache true --vcpkg true
267267
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.25.1/setup-cpp-x64-linux"
8+
RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.26.0/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.25.1",
3+
"version": "0.26.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)