Skip to content

Commit 8f3d4d0

Browse files
committed
use clang
1 parent 40aafd6 commit 8f3d4d0

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

.github/workflows/create_release.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -94,15 +94,15 @@ jobs:
9494
echo "SHASUM=$SHASUM" >> $GITHUB_OUTPUT
9595
if: matrix.os == 'macos-latest'
9696

97-
- name: upload tarball
98-
uses: softprops/action-gh-release@v1
99-
with:
100-
draft: true
101-
files: |
102-
${{ steps.archive.outputs.TARBALL }}
103-
${{ steps.archive.outputs.SHASUM }}
104-
${{ steps.archive-arm64.outputs.TARBALL }}
105-
${{ steps.archive-arm64.outputs.SHASUM }}
97+
# - name: upload tarball
98+
# uses: softprops/action-gh-release@v1
99+
# with:
100+
# draft: true
101+
# files: |
102+
# ${{ steps.archive.outputs.TARBALL }}
103+
# ${{ steps.archive.outputs.SHASUM }}
104+
# ${{ steps.archive-arm64.outputs.TARBALL }}
105+
# ${{ steps.archive-arm64.outputs.SHASUM }}
106106

107107
build-linux:
108108
name: Linux
@@ -127,7 +127,7 @@ jobs:
127127

128128
- name: cmake
129129
run: |
130-
cmake . -G Ninja -DCMAKE_BUILD_TYPE=Release -DBUILD_STATIC_LIB=ON -DCMAKE_INSTALL_PREFIX=install -DBYN_ENABLE_LTO=ON
130+
cmake . -G Ninja -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_C_COMPILER=clang -DCMAKE_BUILD_TYPE=Release -DBUILD_STATIC_LIB=ON -DCMAKE_INSTALL_PREFIX=install -DBYN_ENABLE_LTO=ON
131131
132132
- name: build
133133
run: |

0 commit comments

Comments
 (0)