File tree Expand file tree Collapse file tree 1 file changed +4
-16
lines changed Expand file tree Collapse file tree 1 file changed +4
-16
lines changed Original file line number Diff line number Diff line change 42
42
name : ${{ matrix.name }}
43
43
runs-on : ${{ matrix.os }}
44
44
steps :
45
- # - name: foobar
46
- # shell: powershell
47
- # run: |
48
- # iex (new-object net.webclient).downloadstring('https://get.scoop.sh')
49
- # scoop install ninja
50
- # scoop install llvm
51
- # echo '#include <stdio.h>' | out-file foo.c -encoding ascii
52
- # echo 'int main() { printf("Hello world.\n"); }' | out-file foo.c -encoding ascii -append
53
- # cmd /c "clang-cl.exe -v -o foo.exe foo.c 2>&1"
54
- # .\foo.exe
55
45
- uses : actions/checkout@v1
56
46
with :
57
47
fetch-depth : 1
@@ -63,12 +53,10 @@ jobs:
63
53
mkdir build &&
64
54
cd build &&
65
55
cmake -GNinja
66
- -DFOO=BAR
67
- "-DLLVM_ENABLE_PROJECTS=libcxx;libcxxabi;libunwind"
68
- "-DLLVM_LIT_ARGS=-sv --show-unsupported --show-xfail --param=std=${{ matrix.cxx-std }}"
69
- ../llvm &&
70
- echo "DONE!" &&
71
- type CMakeCache.txt
56
+ -DLLVM_FORCE_BUILD_RUNTIME=ON
57
+ -DLLVM_ENABLE_PROJECTS="libcxx;libcxxabi;libunwind"
58
+ -DLLVM_LIT_ARGS="-sv --show-unsupported --show-xfail --param=std=${{ matrix.cxx-std }}"
59
+ ../llvm
72
60
- name : build libcxxabi
73
61
run : ninja -C build cxxabi
74
62
- name : build libcxxabi
You can’t perform that action at this time.
0 commit comments