mirror of https://github.com/aminya/setup-cpp
Merge branch 'master' into llvm-system
This commit is contained in:
commit
f829c0abcc
12
README.md
12
README.md
|
@ -56,13 +56,13 @@ NOTE: On Unix systems, if you are already a root user (e.g., in a GitLab runner
|
||||||
|
|
||||||
#### With executable
|
#### With executable
|
||||||
|
|
||||||
Download the executable for your platform from [here](https://github.com/aminya/setup-cpp/releases/tag/v0.31.0), and run it with the available options. You can also automate downloading using `wget`, `curl`, or other similar tools.
|
Download the executable for your platform from [here](https://github.com/aminya/setup-cpp/releases/tag/v0.31.1), and run it with the available options. You can also automate downloading using `wget`, `curl`, or other similar tools.
|
||||||
|
|
||||||
An example that installs llvm, cmake, ninja, ccache, and vcpkg:
|
An example that installs llvm, cmake, ninja, ccache, and vcpkg:
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
# windows example (open PowerShell as admin)
|
# windows example (open PowerShell as admin)
|
||||||
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.31.0/setup-cpp-x64-windows.exe"
|
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.31.1/setup-cpp-x64-windows.exe"
|
||||||
./setup-cpp-x64-windows --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
|
./setup-cpp-x64-windows --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
|
||||||
|
|
||||||
RefreshEnv.cmd # activate cpp environment variables
|
RefreshEnv.cmd # activate cpp environment variables
|
||||||
|
@ -70,7 +70,7 @@ RefreshEnv.cmd # activate cpp environment variables
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
# linux example
|
# linux example
|
||||||
wget "https://github.com/aminya/setup-cpp/releases/download/v0.31.0/setup-cpp-x64-linux"
|
wget "https://github.com/aminya/setup-cpp/releases/download/v0.31.1/setup-cpp-x64-linux"
|
||||||
chmod +x ./setup-cpp-x64-linux
|
chmod +x ./setup-cpp-x64-linux
|
||||||
sudo ./setup-cpp-x64-linux --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
|
sudo ./setup-cpp-x64-linux --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
|
||||||
|
|
||||||
|
@ -79,7 +79,7 @@ source ~/.cpprc # activate cpp environment variables
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
# macos example
|
# macos example
|
||||||
wget "https://github.com/aminya/setup-cpp/releases/download/v0.31.0/setup-cpp-x64-macos"
|
wget "https://github.com/aminya/setup-cpp/releases/download/v0.31.1/setup-cpp-x64-macos"
|
||||||
chmod +x ./setup-cpp-x64-macos
|
chmod +x ./setup-cpp-x64-macos
|
||||||
sudo ./setup-cpp-x64-macos --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
|
sudo ./setup-cpp-x64-macos --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
|
||||||
|
|
||||||
|
@ -159,7 +159,7 @@ RUN apt-get update -qq && \
|
||||||
# install nodejs
|
# install nodejs
|
||||||
apt-get install -y --no-install-recommends nodejs npm && \
|
apt-get install -y --no-install-recommends nodejs npm && \
|
||||||
# install setup-cpp
|
# install setup-cpp
|
||||||
npm install -g setup-cpp@v0.31.0 && \
|
npm install -g setup-cpp@v0.31.1 && \
|
||||||
# install the compiler and tools
|
# install the compiler and tools
|
||||||
setup-cpp \
|
setup-cpp \
|
||||||
--nala true \
|
--nala true \
|
||||||
|
@ -269,7 +269,7 @@ stages:
|
||||||
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 1E9377A2BA9EF27F
|
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 1E9377A2BA9EF27F
|
||||||
|
|
||||||
.setup-cpp: &setup-cpp |
|
.setup-cpp: &setup-cpp |
|
||||||
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.31.0/setup-cpp-x64-linux"
|
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.31.1/setup-cpp-x64-linux"
|
||||||
chmod +x setup-cpp-x64-linux
|
chmod +x setup-cpp-x64-linux
|
||||||
./setup-cpp-x64-linux --compiler $compiler --cmake true --ninja true --ccache true --vcpkg true
|
./setup-cpp-x64-linux --compiler $compiler --cmake true --ninja true --ccache true --vcpkg true
|
||||||
source ~/.cpprc
|
source ~/.cpprc
|
||||||
|
|
|
@ -87,7 +87,7 @@ inputs:
|
||||||
|
|
||||||
runs:
|
runs:
|
||||||
using: "node16"
|
using: "node16"
|
||||||
main: "dist/node16/setup-cpp.js"
|
main: "dist/actions/setup-cpp.js"
|
||||||
|
|
||||||
branding:
|
branding:
|
||||||
icon: "award"
|
icon: "award"
|
||||||
|
|
|
@ -8,7 +8,7 @@ RUN pacman -Syuu --noconfirm && \
|
||||||
# install nodejs
|
# install nodejs
|
||||||
pacman -S --noconfirm --needed nodejs npm && \
|
pacman -S --noconfirm --needed nodejs npm && \
|
||||||
# install setup-cpp
|
# install setup-cpp
|
||||||
npm install -g setup-cpp@v0.31.0 && \
|
npm install -g setup-cpp@v0.31.1 && \
|
||||||
# install the compiler and tools
|
# install the compiler and tools
|
||||||
node /usr/lib/setup-cpp/setup-cpp.js \
|
node /usr/lib/setup-cpp/setup-cpp.js \
|
||||||
--compiler llvm \
|
--compiler llvm \
|
||||||
|
|
|
@ -6,7 +6,7 @@ COPY "./dist/legacy" "/usr/lib/setup-cpp/"
|
||||||
# install nodejs
|
# install nodejs
|
||||||
RUN dnf -y install nodejs npm && \
|
RUN dnf -y install nodejs npm && \
|
||||||
# install setup-cpp
|
# install setup-cpp
|
||||||
npm install -g setup-cpp@v0.31.0 && \
|
npm install -g setup-cpp@v0.31.1 && \
|
||||||
# install the compiler and tools
|
# install the compiler and tools
|
||||||
node /usr/lib/setup-cpp/setup-cpp.js \
|
node /usr/lib/setup-cpp/setup-cpp.js \
|
||||||
--compiler llvm \
|
--compiler llvm \
|
||||||
|
|
|
@ -7,7 +7,7 @@ RUN apt-get update -qq && \
|
||||||
# install nodejs
|
# install nodejs
|
||||||
apt-get install -y --no-install-recommends nodejs npm && \
|
apt-get install -y --no-install-recommends nodejs npm && \
|
||||||
# install setup-cpp
|
# install setup-cpp
|
||||||
npm install -g setup-cpp@v0.31.0 && \
|
npm install -g setup-cpp@v0.31.1 && \
|
||||||
# install the compiler and tools
|
# install the compiler and tools
|
||||||
node /usr/lib/setup-cpp/setup-cpp.js \
|
node /usr/lib/setup-cpp/setup-cpp.js \
|
||||||
--nala true \
|
--nala true \
|
||||||
|
|
|
@ -6,7 +6,7 @@ RUN pacman -Syuu --noconfirm && \
|
||||||
# install nodejs
|
# install nodejs
|
||||||
pacman -S --noconfirm --needed nodejs npm && \
|
pacman -S --noconfirm --needed nodejs npm && \
|
||||||
# install setup-cpp
|
# install setup-cpp
|
||||||
npm install -g setup-cpp@v0.31.0 && \
|
npm install -g setup-cpp@v0.31.1 && \
|
||||||
# install the compiler and tools
|
# install the compiler and tools
|
||||||
setup-cpp \
|
setup-cpp \
|
||||||
--compiler llvm \
|
--compiler llvm \
|
||||||
|
|
|
@ -4,7 +4,7 @@ FROM fedora:38 as setup-cpp-fedora
|
||||||
# install nodejs
|
# install nodejs
|
||||||
RUN dnf -y install nodejs npm && \
|
RUN dnf -y install nodejs npm && \
|
||||||
# install setup-cpp
|
# install setup-cpp
|
||||||
npm install -g setup-cpp@v0.31.0 && \
|
npm install -g setup-cpp@v0.31.1 && \
|
||||||
# install the compiler and tools
|
# install the compiler and tools
|
||||||
setup-cpp \
|
setup-cpp \
|
||||||
--compiler llvm \
|
--compiler llvm \
|
||||||
|
|
|
@ -5,7 +5,7 @@ RUN apt-get update -qq && \
|
||||||
# install nodejs
|
# install nodejs
|
||||||
apt-get install -y --no-install-recommends nodejs npm && \
|
apt-get install -y --no-install-recommends nodejs npm && \
|
||||||
# install setup-cpp
|
# install setup-cpp
|
||||||
npm install -g setup-cpp@v0.31.0 && \
|
npm install -g setup-cpp@v0.31.1 && \
|
||||||
# install the compiler and tools
|
# install the compiler and tools
|
||||||
setup-cpp \
|
setup-cpp \
|
||||||
--nala true \
|
--nala true \
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{
|
{
|
||||||
"name": "setup-cpp",
|
"name": "setup-cpp",
|
||||||
"version": "0.31.0"
|
"version": "0.31.1"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "setup-cpp",
|
"name": "setup-cpp",
|
||||||
"version": "0.31.0",
|
"version": "0.31.1",
|
||||||
"description": "Install all the tools required for building and testing C++/C projects.",
|
"description": "Install all the tools required for building and testing C++/C projects.",
|
||||||
"repository": "https://github.com/aminya/setup-cpp",
|
"repository": "https://github.com/aminya/setup-cpp",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
|
|
Loading…
Reference in New Issue