Skip to content

Commit e11b757

Browse files
authored
Cleanup CI configurations in ci.yaml
Removed unnecessary configurations for GCC and Clang from the CI workflow.
1 parent 4cf8f5a commit e11b757

File tree

1 file changed

+12
-15
lines changed

1 file changed

+12
-15
lines changed

.github/workflows/ci.yaml

Lines changed: 12 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -90,31 +90,28 @@ jobs:
9090

9191
compile:
9292
name: Compile CLN ${{ matrix.cfg }}
93-
if: false
9493
runs-on: ubuntu-22.04
9594
timeout-minutes: 30
96-
needs:
97-
- prebuild
9895
strategy:
9996
fail-fast: true
10097
matrix:
10198
include:
10299
- CFG: compile-gcc
103100
VALGRIND: 1
104101
COMPILER: gcc
105-
- CFG: compile-gcc-O3
106-
VALGRIND: 1
107-
COMPILER: gcc
108-
COPTFLAGS_VAR: COPTFLAGS="-O3 -Werror"
102+
# - CFG: compile-gcc-O3
103+
# VALGRIND: 1
104+
# COMPILER: gcc
105+
# COPTFLAGS_VAR: COPTFLAGS="-O3 -Werror"
109106
# While we're at it let's try to compile with clang
110-
- CFG: compile-clang
111-
VALGRIND: 1
112-
COMPILER: clang
113-
- CFG: compile-clang-sanitizers
114-
COMPILER: clang
115-
ASAN: 1
116-
UBSAN: 1
117-
VALGRIND: 0
107+
# - CFG: compile-clang
108+
# VALGRIND: 1
109+
# COMPILER: clang
110+
# - CFG: compile-clang-sanitizers
111+
# COMPILER: clang
112+
# ASAN: 1
113+
# UBSAN: 1
114+
# VALGRIND: 0
118115
steps:
119116
- name: Checkout
120117
uses: actions/checkout@v4

0 commit comments

Comments
 (0)