Skip to content

Commit 1ac54ea

Browse files
committed
Fix clang header artifact file name
1 parent d70b4fc commit 1ac54ea

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

azure-pipelines.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
displayName: 'Publish LLVM XCFramework'
2929
enabled: true
3030

31-
- publish: $(System.DefaultWorkingDirectory)/LLVM-Clang-iOS.tar.xz
32-
artifact: LLVM-Clang-iOS
31+
- publish: $(System.DefaultWorkingDirectory)/Lib-Clang-iphoneos.tar.xz
32+
artifact: Clang-Headers
3333
displayName: 'Publish LLVM Clang Headers'
34-
enabled: false
34+
enabled: true

build-llvm-framework.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ for p in ${PLATFORMS[@]}; do
2323
./prepare-llvm.sh $p
2424
FRAMEWORKS_ARGS+=("-library" "LLVM-$p/llvm.a" "-headers" "LLVM-$p/include")
2525
tar -cJf LLVM-$p.tar.xz LLVM-$p/
26-
tar -cJf LLVM-Clang-$p.tar.xz LLVM-$p/lib/clang/
26+
echo "Create clang support headers archive"
27+
tar -cJf Lib-Clang-$p.tar.xz LLVM-$p/lib/clang/
2728
done
2829

2930
echo "Create XC framework with arguments" ${FRAMEWORKS_ARGS[@]}

0 commit comments

Comments
 (0)