Skip to content

Commit

Permalink
cmake 3.19.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lukka committed Nov 19, 2020
1 parent c71a29d commit 573c9a9
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ jobs:
which cmake
cmake --version
CMAKE_VER="$(cmake --version)"
if ! [[ "$CMAKE_VER" =~ .*"3.18.3".* ]]; then
echo "ASSERTION FAILED! Instead of 3.18.3, found: "
if ! [[ "$CMAKE_VER" =~ .*"3.19.0".* ]]; then
echo "ASSERTION FAILED! Instead of 3.19.0, found: "
echo "$CMAKE_VER"
exit -1
fi
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

# [The **get-cmake** action for downloading and caching CMake and ninja binaries](https://github.com/marketplace/actions/get-cmake) on the GitHub agents.

Restores from cache, or downloads and caches CMake **v3.18.3** and Ninja **v1.10.1**.
Restores from cache, or downloads and caches CMake **v3.19.0** and Ninja **v1.10.1**.
Works for x64 on Linux/macOS/Windows.

Flowchart of `get-cmake`:
Expand All @@ -24,8 +24,8 @@ Flowchart of `get-cmake`:
uses: lukka/get-cmake@latest ⟸ THIS IS THE ONE LINER YOU NEED

# If you need to pin your workflow to specific CMake version you can use the 'tag' to select the version.
- name: Get specific version CMake, v3.18.2
uses: lukka/get-cmake@v3.18.2 ⟸ THIS IS THE ONE LINER YOU NEED
- name: Get specific version CMake, v3.19
uses: lukka/get-cmake@v3.19 ⟸ THIS IS THE ONE LINER YOU NEED
```
## Developer Manual
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2405,7 +2405,7 @@ class ToolsGetter {
}
}
exports.ToolsGetter = ToolsGetter;
ToolsGetter.CMakeVersion = '3.18.3';
ToolsGetter.CMakeVersion = '3.19.0';
ToolsGetter.NinjaVersion = '1.10.1';
// Predefined URL for CMake
ToolsGetter.linux_x64 = `https://github.com/Kitware/CMake/releases/download/v${ToolsGetter.CMakeVersion}/cmake-${ToolsGetter.CMakeVersion}-Linux-x86_64.tar.gz`;
Expand Down
2 changes: 1 addition & 1 deletion src/get-cmake.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ function hashCode(text: string): string {
}

export class ToolsGetter {
private static readonly CMakeVersion = '3.18.3';
private static readonly CMakeVersion = '3.19.0';
private static readonly NinjaVersion = '1.10.1';

// Predefined URL for CMake
Expand Down

0 comments on commit 573c9a9

Please sign in to comment.