Skip to content

Commit cb9979b

Browse files
committed
temporarily disabling various tests
1 parent b8b689b commit cb9979b

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

.github/workflows/linux.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name: Linux Build
55

66
on:
77
push:
8-
branches: ["main"]
8+
branches: ["master"]
99
paths:
1010
- "include/**"
1111
- "src/**"
@@ -17,7 +17,7 @@ on:
1717
- "CMakeLists.txt"
1818
- ".github/workflows/linux.yml"
1919
pull_request:
20-
branches: ["main"]
20+
branches: ["master"]
2121
paths:
2222
- "include/**"
2323
- "src/**"

.github/workflows/macos.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name: Macos Build
55

66
on:
77
push:
8-
branches: ["main"]
8+
branches: ["master"]
99
paths:
1010
- "include/**"
1111
- "src/**"
@@ -17,7 +17,7 @@ on:
1717
- "CMakeLists.txt"
1818
- ".github/workflows/macos.yml"
1919
pull_request:
20-
branches: ["main"]
20+
branches: ["master"]
2121
paths:
2222
- "include/**"
2323
- "src/**"

.github/workflows/windows.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
fail-fast: false
3535

3636
matrix:
37-
preset: [debug, release]
37+
preset: [debug]
3838
# TODO: compiler: [cl, clang-cl]
3939
compiler: [cl]
4040

tests/beman/execution26/CMakeLists.txt

+7-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ endif()
1010

1111
list(
1212
APPEND
13-
execution_tests
13+
x_execution_tests
1414
notify.test
1515
exec-scounting.test
1616
exec-awaitable.test
@@ -94,6 +94,12 @@ list(
9494
utilities.test
9595
)
9696

97+
list(
98+
APPEND
99+
execution_tests
100+
exec-just.test
101+
)
102+
97103
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/include)
98104

99105
if(NOT DEFINED CMAKE_CXX_STANDARD)

0 commit comments

Comments
 (0)