Skip to content

Commit

Permalink
install latest cmake
Browse files Browse the repository at this point in the history
Signed-off-by: Uilian Ries <uilianries@gmail.com>
  • Loading branch information
uilianries committed Feb 14, 2024
1 parent eda6f59 commit 369d157
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,14 @@ jobs:
apt install -y build-essential software-properties-common
add-apt-repository ppa:ubuntu-toolchain-r/test
apt-get install -y \
cmake \
curl \
git \
ninja-build \
g++ \
libssl-dev \
lcov
- name: Get latest CMake
uses: lukka/get-cmake@latest
- name: Checkout
uses: actions/checkout@v4
with:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/ci-emscripten.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,10 @@ jobs:
apt install -y build-essential software-properties-common
add-apt-repository ppa:ubuntu-toolchain-r/test
apt-get install -y \
cmake \
git \
ninja-build
- name: Get latest CMake
uses: lukka/get-cmake@latest
- name: Checkout
uses: actions/checkout@v4
with:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/ci-fedora.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,11 @@ jobs:
container:
image: fedora:${{ matrix.fedora_version }}
steps:
- name: Get latest CMake
uses: lukka/get-cmake@latest
- name: Install Dependencies
run: |
sudo dnf install -y \
cmake \
git \
ninja-build \
gcc-c++ \
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-opensuse.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,14 @@ jobs:
- name: zypper
run: |
zypper install -y \
cmake \
git \
ninja \
gcc${{ matrix.gplusplus_version }} \
gcc${{ matrix.gplusplus_version }}-c++ \
openssl \
openssl-devel
- name: Get latest CMake
uses: lukka/get-cmake@latest
# Cannot run higher version of checkout, node isn't backwards compatible
- name: Checkout
uses: actions/checkout@v2
Expand All @@ -45,4 +46,3 @@ jobs:
run: |
cd Release
ctest --build-config Release -VV
3 changes: 2 additions & 1 deletion .github/workflows/ci-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,10 +117,11 @@ jobs:
apt install -y build-essential software-properties-common
apt-get install -y \
wget \
cmake \
git \
ninja-build \
libssl-dev
- name: Get latest CMake
uses: lukka/get-cmake@latest
- name: install-clang
run: |
wget https://apt.llvm.org/llvm.sh
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.25)
cmake_minimum_required(VERSION 3.15)
include(CMakeDependentOption)
project(libcoro
VERSION 0.11.0
Expand Down

0 comments on commit 369d157

Please sign in to comment.