From 9bc7fbc388f20eafdfb2fc44bfd20b9f89c1fdae Mon Sep 17 00:00:00 2001 From: Amin Yahyaabadi Date: Tue, 1 Feb 2022 21:17:26 -0800 Subject: [PATCH] v0.8.0 [skip ci] --- README.md | 18 +++++++++--------- building/docker/debian.dockerfile | 2 +- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f1bfeee9..af9325b8 100644 --- a/README.md +++ b/README.md @@ -47,13 +47,13 @@ Tip: You can automate downloading using `wget`, `curl`, or other similar tools. ### Executable -Download the executable for your platform from [here](https://github.com/aminya/setup-cpp/releases/tag/v0.7.0), and run it with the available options. +Download the executable for your platform from [here](https://github.com/aminya/setup-cpp/releases/tag/v0.8.0), and run it with the available options. An example that installs llvm, cmake, ninja, ccache, and vcpkg: ```ps1 # windows example (open shell as admin) -curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.7.0/setup_cpp_windows.exe" +curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.8.0/setup_cpp_windows.exe" ./setup_cpp_windows --compiler llvm --cmake true --ninja true --ccache true --vcpkg true RefreshEnv.cmd # reload the environment @@ -61,7 +61,7 @@ RefreshEnv.cmd # reload the environment ```ps1 # linux example -wget "https://github.com/aminya/setup-cpp/releases/download/v0.7.0/setup_cpp_linux" +wget "https://github.com/aminya/setup-cpp/releases/download/v0.8.0/setup_cpp_linux" chmod +x setup_cpp_linux sudo ./setup_cpp_linux --compiler llvm --cmake true --ninja true --ccache true --vcpkg true @@ -70,7 +70,7 @@ source ~/.profile # reload the environment ```ps1 # mac example -wget "https://github.com/aminya/setup-cpp/releases/download/v0.7.0/setup_cpp_mac" +wget "https://github.com/aminya/setup-cpp/releases/download/v0.8.0/setup_cpp_mac" chmod +x setup_cpp_mac sudo ./setup_cpp_mac --compiler llvm --cmake true --ninja true --ccache true --vcpkg true @@ -84,7 +84,7 @@ NOTE: you will not need `sudo` if you are already a root user (e.g., in a GitLab ### With Nodejs -Download the `setup_cpp.js` file form [here](https://github.com/aminya/setup-cpp/releases/download/v0.7.0/setup_cpp.js), and run it with the available options. +Download the `setup_cpp.js` file form [here](https://github.com/aminya/setup-cpp/releases/download/v0.8.0/setup_cpp.js), and run it with the available options. On Windows: @@ -92,7 +92,7 @@ Open the shell as admin, download via `curl`, then install ```ps1 # open shell as admin -curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.7.0/setup_cpp.js" +curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.8.0/setup_cpp.js" node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --vcpkg true RefreshEnv.cmd # reload the environment @@ -101,7 +101,7 @@ RefreshEnv.cmd # reload the environment On Linux or Mac: ```ps1 -wget "https://github.com/aminya/setup-cpp/releases/download/v0.7.0/setup_cpp.js" +wget "https://github.com/aminya/setup-cpp/releases/download/v0.8.0/setup_cpp.js" sudo node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --vcpkg true source ~/.profile # reload the environment @@ -180,7 +180,7 @@ FROM debian:bullseye WORKDIR "/" RUN apt-get update -qq RUN apt-get install -y --no-install-recommends wget -RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.7.0/setup_cpp_linux" +RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.8.0/setup_cpp_linux" RUN chmod +x ./setup_cpp_linux # install llvm, cmake, ninja, and ccache @@ -259,7 +259,7 @@ stages: apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 1E9377A2BA9EF27F .setup_cpp: &setup_cpp | - curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.7.0/setup_cpp_linux" + curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.8.0/setup_cpp_linux" chmod +x setup_cpp_linux ./setup_cpp_linux --compiler $compiler --cmake true --ninja true --ccache true --vcpkg true source ~/.profile diff --git a/building/docker/debian.dockerfile b/building/docker/debian.dockerfile index c9fc2eea..7878c2f0 100644 --- a/building/docker/debian.dockerfile +++ b/building/docker/debian.dockerfile @@ -5,7 +5,7 @@ FROM debian:bullseye WORKDIR "/" RUN apt-get update -qq RUN apt-get install -y --no-install-recommends wget -RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.7.0/setup_cpp_linux" +RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.8.0/setup_cpp_linux" RUN chmod +x ./setup_cpp_linux # install llvm, cmake, ninja, and ccache