Skip to content

Commit 6662184

Browse files
committed
chore: v0.17.0 [skip ci]
1 parent af7919a commit 6662184

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

README.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Install all the tools required for building and testing C++/C projects.
66

77
Setting up a **cross-platform** environment for building and testing C++/C projects is a bit tricky. Each platform has its own compilers, and each of them requires a different installation procedure. This package aims to fix this issue.
88

9-
This package is designed to be **modular** and as **minimal** as possible. This will allow you to install the tools you want. It is continuously tested on Windows, Linux, and macOS.
9+
This package is designed to be **modular** and as **minimal** as possible. This will allow you to install the tools you want. It is continuously tested and supported on several configurations including Windows (11, 10, 2022, 2019), Linux (Ubuntu 22.04, Ubuntu 20.04, ArchLinux), and macOS (10.15 and 11).
1010

1111
The package can be used locally or from CI services like GitHub Actions.
1212

@@ -36,21 +36,21 @@ Tip: You can automate downloading using `wget`, `curl`, or other similar tools.
3636

3737
### Executable
3838

39-
Download the executable for your platform from [here](https://github.com/aminya/setup-cpp/releases/tag/v0.16.0), and run it with the available options.
39+
Download the executable for your platform from [here](https://github.com/aminya/setup-cpp/releases/tag/v0.17.0), and run it with the available options.
4040

4141
An example that installs llvm, cmake, ninja, ccache, and vcpkg:
4242

4343
```ps1
4444
# windows example (open shell as admin)
45-
curl.exe -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.16.0/setup_cpp_windows.exe"
45+
curl.exe -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.17.0/setup_cpp_windows.exe"
4646
.\setup_cpp_windows --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
4747
4848
RefreshEnv.cmd # activate cpp environment variables
4949
```
5050

5151
```ps1
5252
# linux example
53-
wget "https://github.com/aminya/setup-cpp/releases/download/v0.16.0/setup_cpp_linux"
53+
wget "https://github.com/aminya/setup-cpp/releases/download/v0.17.0/setup_cpp_linux"
5454
chmod +x setup_cpp_linux
5555
sudo ./setup_cpp_linux --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
5656
@@ -59,7 +59,7 @@ source ~/.cpprc # activate cpp environment variables
5959

6060
```ps1
6161
# mac example
62-
wget "https://github.com/aminya/setup-cpp/releases/download/v0.16.0/setup_cpp_mac"
62+
wget "https://github.com/aminya/setup-cpp/releases/download/v0.17.0/setup_cpp_mac"
6363
chmod +x setup_cpp_mac
6464
sudo ./setup_cpp_mac --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
6565
@@ -74,15 +74,15 @@ NOTE: On Unix systems, you will not need `sudo` if you are already a root user (
7474

7575
### With Nodejs
7676

77-
Download the `setup_cpp.js` file form [here](https://github.com/aminya/setup-cpp/releases/download/v0.16.0/setup_cpp.js), and run it with the available options.
77+
Download the `setup_cpp.js` file form [here](https://github.com/aminya/setup-cpp/releases/download/v0.17.0/setup_cpp.js), and run it with the available options.
7878

7979
On Windows:
8080

8181
Open the shell as admin, download via `curl`, then install
8282

8383
```ps1
8484
# open shell as admin
85-
curl.exe -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.16.0/setup_cpp.js"
85+
curl.exe -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.17.0/setup_cpp.js"
8686
node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
8787
8888
RefreshEnv.cmd # activate cpp environment variables
@@ -91,7 +91,7 @@ RefreshEnv.cmd # activate cpp environment variables
9191
On Linux or Mac:
9292

9393
```ps1
94-
wget "https://github.com/aminya/setup-cpp/releases/download/v0.16.0/setup_cpp.js"
94+
wget "https://github.com/aminya/setup-cpp/releases/download/v0.17.0/setup_cpp.js"
9595
sudo node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
9696
9797
source ~/.cpprc # activate cpp environment variables
@@ -170,7 +170,7 @@ FROM ubuntu:22.04 AS base
170170
WORKDIR "/"
171171
RUN apt-get update -qq
172172
RUN apt-get install -y --no-install-recommends wget
173-
RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.16.0/setup_cpp_linux"
173+
RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.17.0/setup_cpp_linux"
174174
RUN chmod +x ./setup_cpp_linux
175175

176176
# install llvm, cmake, ninja, and ccache
@@ -264,7 +264,7 @@ stages:
264264
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 1E9377A2BA9EF27F
265265

266266
.setup_cpp: &setup_cpp |
267-
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.16.0/setup_cpp_linux"
267+
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.17.0/setup_cpp_linux"
268268
chmod +x setup_cpp_linux
269269
./setup_cpp_linux --compiler $compiler --cmake true --ninja true --ccache true --vcpkg true
270270
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.16.0/setup_cpp_linux"
8+
RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.17.0/setup_cpp_linux"
99
RUN chmod +x ./setup_cpp_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.16.0",
3+
"version": "0.17.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)