Skip to content

Commit c9b670c

Browse files
committed
disable other jobs while you test the changes
Signed-off-by: Balakrishna Avulapati <ba@bavulapati.com>
1 parent 74d1710 commit c9b670c

File tree

1 file changed

+58
-58
lines changed

1 file changed

+58
-58
lines changed

.github/workflows/ci.yml

Lines changed: 58 additions & 58 deletions
Original file line numberDiff line numberDiff line change
@@ -21,63 +21,63 @@ jobs:
2121
type: static
2222
shell: sh
2323
benchmark: macos/llvm
24-
- os: macos-latest
25-
cc: clang
26-
cxx: clang++
27-
type: shared
28-
shell: sh
29-
- os: macos-latest
30-
cc: gcc-13
31-
cxx: g++-13
32-
type: static
33-
shell: sh
34-
benchmark: macos/gcc
35-
- os: ubuntu-latest
36-
cc: clang
37-
cxx: clang++
38-
type: static
39-
shell: sh
40-
benchmark: linux/llvm
41-
- os: ubuntu-latest
42-
cc: gcc
43-
cxx: g++
44-
type: static
45-
shell: sh
46-
benchmark: linux/gcc
47-
- os: ubuntu-latest
48-
cc: clang
49-
cxx: clang++
50-
type: shared
51-
shell: sh
52-
- os: ubuntu-latest
53-
cc: gcc
54-
cxx: g++
55-
type: shared
56-
shell: sh
57-
- os: windows-latest
58-
type: static
59-
shell: pwsh
60-
benchmark: windows/msvc
61-
- os: windows-latest
62-
type: shared
63-
shell: pwsh
64-
- os: windows-latest
65-
type: static
66-
shell: msys2 {0}
67-
68-
# Sanitizers
69-
- os: ubuntu-latest
70-
cc: clang
71-
cxx: clang++
72-
type: static
73-
shell: sh
74-
options: -DSOURCEMETA_CORE_ADDRESS_SANITIZER:BOOL=ON
75-
- os: ubuntu-latest
76-
cc: clang
77-
cxx: clang++
78-
type: static
79-
shell: sh
80-
options: -DSOURCEMETA_CORE_UNDEFINED_SANITIZER:BOOL=ON
24+
# - os: macos-latest
25+
# cc: clang
26+
# cxx: clang++
27+
# type: shared
28+
# shell: sh
29+
# - os: macos-latest
30+
# cc: gcc-13
31+
# cxx: g++-13
32+
# type: static
33+
# shell: sh
34+
# benchmark: macos/gcc
35+
# - os: ubuntu-latest
36+
# cc: clang
37+
# cxx: clang++
38+
# type: static
39+
# shell: sh
40+
# benchmark: linux/llvm
41+
# - os: ubuntu-latest
42+
# cc: gcc
43+
# cxx: g++
44+
# type: static
45+
# shell: sh
46+
# benchmark: linux/gcc
47+
# - os: ubuntu-latest
48+
# cc: clang
49+
# cxx: clang++
50+
# type: shared
51+
# shell: sh
52+
# - os: ubuntu-latest
53+
# cc: gcc
54+
# cxx: g++
55+
# type: shared
56+
# shell: sh
57+
# - os: windows-latest
58+
# type: static
59+
# shell: pwsh
60+
# benchmark: windows/msvc
61+
# - os: windows-latest
62+
# type: shared
63+
# shell: pwsh
64+
# - os: windows-latest
65+
# type: static
66+
# shell: msys2 {0}
67+
#
68+
# # Sanitizers
69+
# - os: ubuntu-latest
70+
# cc: clang
71+
# cxx: clang++
72+
# type: static
73+
# shell: sh
74+
# options: -DSOURCEMETA_CORE_ADDRESS_SANITIZER:BOOL=ON
75+
# - os: ubuntu-latest
76+
# cc: clang
77+
# cxx: clang++
78+
# type: static
79+
# shell: sh
80+
# options: -DSOURCEMETA_CORE_UNDEFINED_SANITIZER:BOOL=ON
8181

8282
defaults:
8383
run:
@@ -173,7 +173,7 @@ jobs:
173173
- name: Install llvm
174174
run: brew install llvm
175175
- name: Set PATH
176-
run: echo "export PATH=/opt/homebrew/opt/llvm/bin:\$PATH" >> $GITHUB_ENV
176+
run: echo 'export PATH="/opt/homebrew/opt/llvm/bin:$PATH"' >> /Users/runner/.bash_profile
177177
- run: >
178178
cmake -S . -B ./build
179179
-DCMAKE_BUILD_TYPE:STRING=Release

0 commit comments

Comments
 (0)