Skip to content

Commit 6f82d12

Browse files
committed
chore: v0.18.0 [skip ci]
1 parent 927edb5 commit 6f82d12

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ 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 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).
9+
`setup-cpp` can be used locally from terminal, from CI services like GitHub Actions and GitLab Pipelines, and inside containers like Docker.
1010

11-
The package can be used locally or from CI services like GitHub Actions.
11+
`setup-cpp` is supported on many platforms. It is continuously tested on several configurations including Windows (11, 10, 2022, 2019), Linux (Ubuntu 22.04, Ubuntu 20.04, Fedora, ArchLinux), and macOS (10.15 and 11). `setup-cpp` is backed by unit tests for each tool and integration tests for compiling cpp projects.
1212

1313
# Features
1414

15-
`setup-cpp` can install all of these tools:
15+
`setup-cpp` is **modular** and you can choose to install any of these tools:
1616

1717
| category | tools |
1818
| --------------------- | ------------------------------------------------------------ |
@@ -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.17.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.18.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.17.0/setup_cpp_windows.exe"
45+
curl.exe -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.18.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.17.0/setup_cpp_linux"
53+
wget "https://github.com/aminya/setup-cpp/releases/download/v0.18.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.17.0/setup_cpp_mac"
62+
wget "https://github.com/aminya/setup-cpp/releases/download/v0.18.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.17.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.18.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.17.0/setup_cpp.js"
85+
curl.exe -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.18.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.17.0/setup_cpp.js"
94+
wget "https://github.com/aminya/setup-cpp/releases/download/v0.18.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.17.0/setup_cpp_linux"
173+
RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.18.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.17.0/setup_cpp_linux"
267+
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.18.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

Lines changed: 1 addition & 1 deletion
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.17.0/setup_cpp_linux"
8+
RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.18.0/setup_cpp_linux"
99
RUN chmod +x ./setup_cpp_linux
1010

1111
# install llvm, cmake, ninja, and ccache

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "setup-cpp",
3-
"version": "0.17.0",
3+
"version": "0.18.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)