File tree Expand file tree Collapse file tree 1 file changed +6
-9
lines changed
Expand file tree Collapse file tree 1 file changed +6
-9
lines changed Original file line number Diff line number Diff line change 7070 name : Build + LIT
7171 runs-on : [Windows, build-test]
7272 environment : WindowsCILock
73- defaults :
74- run :
75- shell : bash
7673 # TODO use cached checkout
7774 outputs :
7875 build_conclusion : ${{ steps.build.conclusion }}
@@ -120,16 +117,17 @@ jobs:
120117 - name : Register cleanup after job is finished
121118 uses : ./src/devops/actions/cleanup
122119 - name : Configure
123- shell : cmd
124120 env :
125121 ARGS : ${{ inputs.build_configure_extra_args }}
126122 # TODO switch to clang-cl and lld when this is fixed https://github.com/oneapi-src/level-zero/issues/83
127123 run : |
128124 mkdir build
129- fsutil.exe file setCaseSensitiveInfo build enable
130125 mkdir install
131- mkdir -p D:\github\_work\cache
132- mkdir -p D:\github\_work\cache\${{inputs.build_cache_suffix}}
126+ fsutil.exe file setCaseSensitiveInfo build enable
127+ fsutil.exe file setCaseSensitiveInfo install enable
128+
129+ IF NOT EXIST D:\github\_work\cache MKDIR D:\github\_work\cache
130+ IF NOT EXIST D:\github\_work\cache\${{inputs.build_cache_suffix}} MKDIR D:\github\_work\cache\${{inputs.build_cache_suffix}}
133131 python.exe src/buildbot/configure.py -o build ^
134132 --ci-defaults %ARGS% ^
135133 --cmake-opt="-DCMAKE_C_COMPILER=${{inputs.compiler}}" ^
@@ -142,8 +140,7 @@ jobs:
142140 - name : Build
143141 id : build
144142 run : |
145- cmake --build build --target sycl-toolchain
146- cmake --build build --target llvm-test-depends
143+ cmake --build build
147144 - name : check-llvm
148145 if : always() && !cancelled() && contains(inputs.changes, 'llvm')
149146 run : |
You can’t perform that action at this time.
0 commit comments