File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change 3
3
DOWNLOAD_CACHE_VERSION : ' 8'
4
4
GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
5
5
PYTHONPATH : .
6
+ RELEASE_VER : ' 6.3.3'
6
7
7
8
on :
8
9
push :
@@ -21,14 +22,17 @@ jobs:
21
22
steps :
22
23
- name : Clone LLVM and AMD projects
23
24
run : |
24
- git clone --depth 1 -b rocm-6.3.3 --single-branch https://github.com/ROCm/llvm-project ${{ github.workspace }}/llvm-project
25
+ git clone --depth 1 -b rocm-${{ env.RELEASE_VER }} --single-branch https://github.com/ROCm/llvm-project ${{ github.workspace }}/llvm-project
25
26
cd ${{ github.workspace }}/llvm-project
26
- git checkout e5bf7e55c91490b07c49d8960fa7983d864936c4
27
+ git rev-parse HEAD
27
28
rm -rf .git
28
29
- name : Install build dependencies
29
30
run : |
30
31
brew update
31
- brew install --formula cmake rust
32
+ brew install --formula rust
33
+ - uses : lukka/get-cmake@latest
34
+ with :
35
+ cmakeVersion : " ~3.31.0"
32
36
- name : Build LLVM
33
37
run : |
34
38
cd ${{ github.workspace }}/llvm-project
51
55
id : create_release
52
56
uses : softprops/action-gh-release@v1
53
57
with :
54
- tag_name : v6.1.x
55
- name : Release v6.1.x
58
+ tag_name : v${{ env.RELEASE_VER }}
59
+ name : Release v${{ env.RELEASE_VER }}
56
60
draft : false
57
61
prerelease : false
58
62
generate_release_notes : true
You can’t perform that action at this time.
0 commit comments