From 90d7a9bccfc11830eb8c39e2180faca712d42bdd Mon Sep 17 00:00:00 2001 From: Amin Yahyaabadi Date: Sun, 8 Sep 2024 06:10:52 -0700 Subject: [PATCH] docs: add macos-14 to the github actions example [skip ci] --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f72db77e..b877d50a 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ sudo npx setup-cpp --compiler llvm --cmake true --ninja true --ccache true --vcp source ~/.cpprc # activate cpp environment variables ``` -NOTE: In the `compiler` entry, you can specify the version after `-` like `llvm-11.0.0`. For the tools, you can pass a specific version instead of `true` that chooses the default version +NOTE: In the `compiler` entry, you can specify the version after `-` like `llvm-18`. For the tools, you can pass a specific version instead of `true` that chooses the default version NOTE: On Unix systems, when `setup-cpp` is used locally or in other CI services like GitLab, the environment variables are added to `~/.cpprc`. You should run `source ~/.cpprc` to immediately activate the environment variables. This file is automatically sourced in the next shell restart from `~/.bashrc` or `~/.profile` if `SOURCE_CPPRC` is not set to `0`. To deactivate `.cpprc` in the next shell restart, rename/remove `~/.cpprc`. @@ -115,11 +115,12 @@ jobs: os: - windows-2022 - ubuntu-24.04 - - macos-12 + - macos-14 # arm64 + - macos-13 compiler: - llvm - gcc - # you can specify the version after `-` like `llvm-13.0.0`. + # you can specify the version after `-` like `llvm-18`. include: - os: "windows-2022" compiler: "msvc"