You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/actions/do_build_dpcpp/action.yml
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,10 @@ description: build dpc++
4
4
inputs:
5
5
target:
6
6
description: 'target architecture'
7
+
ock_git_tag:
8
+
description: 'dpcpp build config uses this ock Git tag. Note: "github.sha" is good for both schedule and pull_request events.'
9
+
type: string
10
+
default: ${{ github.sha }}
7
11
download_dpcpp_artefact:
8
12
description: 'download ock artefact rather than building, of form <target>=id;<target2=id2>. Special value of download_release applies to all targets.'
9
13
type: string
@@ -65,7 +69,11 @@ runs:
65
69
fi
66
70
cd llvm
67
71
set -x
72
+
# Note: Although CMake FetchContent will currently only handle branches and tags by default in
73
+
# OCK_GIT_TAG, other refs are accessible via the formatting work-around used below, i.e.:
0 commit comments