Skip to content

Commit d9d1abc

Browse files
authored
Merge pull request #29 from flightaware/min_cmake
update min cmake for tests
2 parents bc76451 + 87e9d6d commit d9d1abc

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/linux-ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@ on:
99
jobs:
1010
build:
1111

12-
runs-on: ubuntu-20.04
12+
runs-on: ubuntu-22.04
1313

1414
steps:
1515
- uses: actions/checkout@v2
1616
- name: Install dependencies
1717
run: |
1818
sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
1919
sudo apt-get update -qq
20-
sudo apt-get install -y gcc-7 g++-7
21-
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-7 70 --slave /usr/bin/g++ g++ /usr/bin/g++-7
20+
sudo apt-get install -y gcc-11 g++-11
21+
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-11 70 --slave /usr/bin/g++ g++ /usr/bin/g++-11
2222
sudo apt-get install -y tcl8.6-dev
2323
- name: make
2424
run: make

test/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 3.0)
1+
cmake_minimum_required(VERSION 3.8)
22

33
set(TCL_TCLSH tclsh8.6)
44

0 commit comments

Comments
 (0)