@@ -17,14 +17,12 @@ jobs:
17
17
os : macos-latest
18
18
os-cmake-args : ' -DCMAKE_OSX_DEPLOYMENT_TARGET=10.15 -DCMAKE_BUILD_TYPE=MinSizeRel -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_C_COMPILER=clang'
19
19
build-args : ' -j$(sysctl -n hw.ncpu)'
20
- dep-tool : ' otool -L'
21
20
bindir : ' /build/bin'
22
21
arch : amd64
23
22
- name : windows
24
23
os : windows-latest
25
24
os-cmake-args : ' -DCMAKE_CXX_FLAGS="/MP /std:c++14" -DLLVM_USE_CRT_MINSIZEREL="MT"'
26
25
build-args : ' --config MinSizeRel'
27
- dep-tool : ' "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Tools\MSVC\14.28.29333\bin\HostX86\x64\dumpbin.exe"'
28
26
bindir : ' /build/MinSizeRel/bin'
29
27
extra-tar-args : ' --exclude=${RELEASE}/clang/test/Driver/Inputs/* --exclude=${RELEASE}/libcxx/test/std/input.output/filesystems/Inputs/static_test_env/* --exclude=${RELEASE}/libclc/amdgcn-mesa3d'
30
28
arch : 386
33
31
os : windows-latest
34
32
os-cmake-args : ' -Thost=x64 -DCMAKE_CXX_FLAGS="/MP /std:c++14" -DLLVM_USE_CRT_MINSIZEREL="MT"'
35
33
build-args : ' --config MinSizeRel'
36
- dep-tool : ' "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Tools\MSVC\14.28.29333\bin\HostX86\x64\dumpbin.exe"'
37
34
bindir : ' /build/MinSizeRel/bin'
38
35
arch : amd64
39
36
extra-tar-args : ' --exclude=${RELEASE}/clang/test/Driver/Inputs/* --exclude=${RELEASE}/libcxx/test/std/input.output/filesystems/Inputs/static_test_env/* --exclude=${RELEASE}/libclc/amdgcn-mesa3d'
@@ -60,10 +57,11 @@ jobs:
60
57
- name : build
61
58
run : cmake --build ${{ env.RELEASE }}/build ${{ matrix.config.build-args }} --target clang-format clangd
62
59
63
- - name : print dependencies
60
+ - name : print macos dependencies
64
61
run : |
65
- ${{ matrix.config.dep-tool }} ${{ env.RELEASE }}${{ matrix.config.bindir }}/clangd${{ matrix.config.extension }}
66
- ${{ matrix.config.dep-tool }} ${{ env.RELEASE }}${{ matrix.config.bindir }}/clang-format${{ matrix.config.extension }}
62
+ otool -L ${{ env.RELEASE }}${{ matrix.config.bindir }}/clangd
63
+ otool -L ${{ env.RELEASE }}${{ matrix.config.bindir }}/clang-format
64
+ if : matrix.config.os == 'macos-latest'
67
65
68
66
69
67
- name : upload artifacts
0 commit comments