File tree 2 files changed +7
-26
lines changed
2 files changed +7
-26
lines changed Original file line number Diff line number Diff line change 14
14
required : false
15
15
os_list :
16
16
required : false
17
- default : ' ["ubuntu-latest", "windows-2019", "macOS-11 "]'
17
+ default : ' ["ubuntu-latest", "windows-2019", "macOS-13 "]'
18
18
python_version :
19
19
required : false
20
20
type : string
38
38
type : string
39
39
# Use windows-2019 due to:
40
40
# https://developercommunity.visualstudio.com/t/Prev-Issue---with-__assume-isnan-/1597317
41
- # We're using a specific version of macOS due to:
42
- # https://github.com/actions/virtual-environments/issues/5900
43
- default : ' ["ubuntu-latest", "windows-2019", "macOS-11"]'
41
+ default : ' ["ubuntu-latest", "windows-2019", "macOS-13"]'
44
42
45
43
python_version :
46
44
required : false
95
93
# run creates a new cache entry so we want to ensure that we have
96
94
# enough cache space for all the tests to run at once and still
97
95
# fit under the 10 GB limit.
98
- max-size : 500M
96
+ # Default to 2G to workaround: https://github.com/hendrikmuhs/ccache-action/issues/174
97
+ max-size : 2G
99
98
key : ${{ matrix.os }}
100
99
variant : sccache
101
100
- name : Build and Test
Original file line number Diff line number Diff line change @@ -27,31 +27,13 @@ concurrency:
27
27
cancel-in-progress : ${{ startsWith(github.ref, 'refs/pull/') }}
28
28
29
29
jobs :
30
- check_all :
30
+ check-all :
31
31
if : github.repository_owner == 'llvm'
32
- name : Test llvm,clang,libclc
32
+ name : Build and Test
33
33
uses : ./.github/workflows/llvm-project-tests.yml
34
34
with :
35
35
build_target : check-all
36
- projects : clang;libclc
37
-
38
- # These need to be separate from the check_all job, becuase there is not enough disk
39
- # space to build all these projects on Windows.
40
- build_lldb :
41
- if : github.repository_owner == 'llvm'
42
- name : Build lldb
43
- uses : ./.github/workflows/llvm-project-tests.yml
44
- with :
45
- build_target : ' '
46
- projects : clang;lldb
47
-
48
- check_lld :
49
- if : github.repository_owner == 'llvm'
50
- name : Test lld
51
- uses : ./.github/workflows/llvm-project-tests.yml
52
- with :
53
- build_target : check-lld
54
- projects : lld
36
+ projects : clang;lld;libclc;lldb
55
37
56
38
abi-dump-setup :
57
39
if : github.repository_owner == 'llvm'
You can’t perform that action at this time.
0 commit comments