Skip to content

Commit 63b7990

Browse files
committed
Change CI
1 parent 52fdf5a commit 63b7990

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/ccpp.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
llvm: ["7"]
14-
build: ["Release", "Debug"] # "RelWithDebInfo"
13+
llvm: ["7"] #8 and 9 not done because of gvn issues
14+
build: ["Release"] # "RelWithDebInfo"
1515
os: [self-hosted]
1616

1717
timeout-minutes: 45

.github/workflows/enzyme.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
llvm: ["7", "9"] # 8
13+
llvm: ["7", "8", "9"] # 8
1414
build: ["Release", "Debug"] # "RelWithDebInfo"
1515
os: [self-hosted]
1616

enzyme/benchmarks/CMakeLists.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ ExternalProject_Add(adept2
99
UPDATE_COMMAND ""
1010
TEST_COMMAND ""
1111
)
12+
set_target_properties(adept2 PROPERTIES EXCLUDE_FROM_ALL TRUE)
1213
ExternalProject_Add(tapenade
1314
URL ${CMAKE_CURRENT_SOURCE_DIR}/ADFirstAidKit.tar
1415
PREFIX tapenade
@@ -19,7 +20,7 @@ ExternalProject_Add(tapenade
1920
INSTALL_COMMAND ""
2021
TEST_COMMAND ""
2122
)
22-
23+
set_target_properties(tapenade PROPERTIES EXCLUDE_FROM_ALL TRUE)
2324

2425
set(BENCH_FLAGS "-I${CMAKE_CURRENT_BINARY_DIR}/adept2/src/adept2/include -I${CMAKE_CURRENT_BINARY_DIR}/tapenade/src/tapenade")
2526
set(BENCH_LINK "${CMAKE_CURRENT_BINARY_DIR}/tapenade/src/tapenade/adBuffer.o ${CMAKE_CURRENT_BINARY_DIR}/tapenade/src/tapenade/adStack.o -L${CMAKE_CURRENT_BINARY_DIR}/adept2/install/lib -ladept")

0 commit comments

Comments
 (0)