File tree Expand file tree Collapse file tree 2 files changed +13
-13
lines changed
Expand file tree Collapse file tree 2 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -74,16 +74,11 @@ jobs:
7474 outputs :
7575 build_conclusion : ${{ steps.build.conclusion }}
7676 steps :
77- - uses : actions/checkout@v4
78- with :
79- path : src
80- ref : ${{ inputs.build_ref || github.sha }}
81- fetch-depth : 1
8277 - uses : ilammy/msvc-dev-cmd@0b201ec74fa43914dc39ae48a89fd1d8cb592756
8378 with :
8479 arch : amd64
8580 - name : Setup oneAPI env
86- uses : ./src/ .github/workflows/sycl-windows-setup-oneapi-env.yaml
81+ uses : ./.github/workflows/sycl-windows-setup-oneapi-env.yml
8782 if : ${{ always() && !cancelled() && inputs.compiler == 'icx' }}
8883 with :
8984 runner : ${{ runner.name }}
9489 echo "C:\Program Files\Git\usr\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
9590 echo "CCACHE_DIR=D:\github\_work\cache\${{ inputs.build_cache_suffix }}" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
9691 echo "CCACHE_MAXSIZE=10G" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
92+ - uses : actions/checkout@v4
93+ with :
94+ path : src
95+ ref : ${{ inputs.build_ref || github.sha }}
96+ fetch-depth : 1
9797 - name : Register cleanup after job is finished
9898 uses : ./src/devops/actions/cleanup
9999 - name : Configure
Original file line number Diff line number Diff line change @@ -47,17 +47,11 @@ jobs:
4747 environment : WindowsCILock
4848 env : ${{ fromJSON(inputs.env) }}
4949 steps :
50- # TODO: use cached_checkout
51- - uses : actions/checkout@v4
52- with :
53- persist-credentials : false
54- ref : ${{ inputs.ref || github.sha }}
55- path : llvm
5650 - uses : ilammy/msvc-dev-cmd@0b201ec74fa43914dc39ae48a89fd1d8cb592756
5751 with :
5852 arch : amd64
5953 - name : Setup oneAPI env
60- uses : ./llvm/ .github/workflows/sycl-windows-setup-oneapi-env.yaml
54+ uses : ./.github/workflows/sycl-windows-setup-oneapi-env.yml
6155 if : ${{ always() && !cancelled() && inputs.compiler == 'icx' }}
6256 with :
6357 runner : ${{ inputs.runner }}
6660 git config --system core.longpaths true
6761 git config --global core.autocrlf false
6862 echo "C:\Program Files\Git\usr\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
63+ # TODO: use cached_checkout
64+ - uses : actions/checkout@v4
65+ with :
66+ persist-credentials : false
67+ ref : ${{ inputs.ref || github.sha }}
68+ path : llvm
6969 - name : Register cleanup after job is finished
7070 uses : ./llvm/devops/actions/cleanup
7171 - name : Download compiler toolchain
You can’t perform that action at this time.
0 commit comments