Skip to content

Commit 42cbd7c

Browse files
committed
disable CI tests on deprecated Fedora versions
1 parent b1d1cb5 commit 42cbd7c

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/main.yml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,24 @@ on:
33
push:
44
pull_request:
55
schedule:
6-
#Every 5 days at midnight
6+
#Every 5 days at midnight
77
- cron: "0 0 1/5 * *"
88

99
jobs:
1010
compilejobFedora:
1111
strategy:
12-
fail-fast: false
12+
fail-fast: false
1313
matrix:
14-
version: [26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37]
14+
version: [29, 30, 31, 32, 33, 34, 35, 36, 37]
1515
runs-on: ubuntu-latest
1616
name: Binder_on_Fedora${{ matrix.version }}
1717
container:
1818
image: fedora:${{ matrix.version }}
1919
steps:
20-
- name: Install
20+
- name: Install
2121
run: |
2222
set -x
23-
uname -a
23+
uname -a
2424
cat /etc/issue
2525
yum -y install git zlib zlib-devel ncurses-devel clang clang-devel clang-libs llvm llvm-devel llvm-static \
2626
libcxx-devel cmake make gcc gcc-c++ \
@@ -34,15 +34,15 @@ jobs:
3434
make install
3535
ldd source/binder
3636
ldd -u -r source/binder || echo "OK"
37-
ctest . --output-on-failure
37+
ctest . --output-on-failure
3838
3939
compilejobOSX:
4040
runs-on: macos-latest
4141
name: Binder_on_OSX
4242
steps:
4343
- name: Checkout
4444
uses: actions/checkout@v3
45-
- name: Install
45+
- name: Install
4646
run: |
4747
set -x
4848
brew install wget coreutils xz pybind11 git
@@ -58,4 +58,3 @@ jobs:
5858
make install
5959
otool -L source/binder
6060
ctest . --output-on-failure
61-

test/T07.class.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
// -*- mode:c++;tab-width:2;indent-tabs-mode:t;show-trailing-whitespace:t;rm-trailing-spaces:t -*-
23
// vi: set ts=2 noet:
34
//

0 commit comments

Comments
 (0)