Skip to content

Commit 69308f2

Browse files
committed
Include compiler-rt to build
Signed-off-by: Douglas Reis <doreis@lowrisc.org>
1 parent b43c923 commit 69308f2

1 file changed

Lines changed: 8 additions & 5 deletions

File tree

.github/workflows/release.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,26 +9,29 @@ jobs:
99
runs-on: ubuntu-latest
1010

1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v5
1313
- name: Install
1414
run: sudo apt-get update && sudo apt-get install -y zlib1g-dev cmake ninja-build
1515

1616
- name: Build
1717
run: |
18-
./cheribuild.py cheri-std093-llvm --cheri-std093-llvm/include-projects="clang;clang-tools-extra;llvm;lld" -d
18+
./cheribuild.py cheri-std093-llvm \
19+
--cheri-std093-llvm/include-projects="clang;clang-tools-extra;llvm;lld;compiler-rt" \
20+
-d
21+
1922
2023
- name: Create tar
2124
run: |
22-
tar -czvf cheri-std093-sdk.tar.gz ./output/cheri-std093-sdk
25+
tar -czvf cheri-std093-llvm.tar.gz ./output/cheri-std093-llvm
2326
2427
- uses: actions/upload-artifact@v4
2528
with:
2629
name: 'cheri-llvm'
27-
path: cheri-std093-sdk.tar.gz
30+
path: cheri-std093-llvm.tar.gz
2831

2932
- uses: softprops/action-gh-release@v2
3033
if: startsWith(github.ref, 'refs/tags/')
3134
with:
3235
prerelease: true
33-
files: cheri-std093-sdk.tar.gz
36+
files: cheri-std093-llvm.tar.gz
3437

0 commit comments

Comments
 (0)