Skip to content

Commit 2cbbbac

Browse files
committed
Fix release CI script.
1 parent eb5c6b9 commit 2cbbbac

File tree

4 files changed

+13
-8
lines changed

4 files changed

+13
-8
lines changed

.github/workflows/release-macos.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
id: package
7373
run: |
7474
export SLANG_OS_NAME=macos
75-
export SLANG_ARCH_NAME=`uname -p`
75+
export SLANG_ARCH_NAME=${{matrix.platform}}
7676
export TAG_NAME=`git describe --tags`
7777
export SLANG_TAG=${TAG_NAME#v}
7878
echo "tag:$TAG_NAME"
@@ -100,19 +100,19 @@ jobs:
100100
env:
101101
AC_PASSWORD: ${{secrets.APPLE_ID_PASSWORD}}
102102
run: |
103-
cp ./bin/macosx-x64/release/libslang.dylib libslang.dylib
104-
cp ./bin/macosx-x64/release/slangd slangd
105-
cp ./bin/macosx-x64/release/slangc slangc
106-
7z a slang-macos-dist.zip libslang.dylib
107-
7z a slang-macos-dist.zip slangd
108-
7z a slang-macos-dist.zip slangc
103+
cp ./bin/macosx-${{matrix.platform}}/release/libslang.dylib libslang.dylib
104+
cp ./bin/macosx-${{matrix.platform}}/release/slangd slangd
105+
cp ./bin/macosx-${{matrix.platform}}/release/slangc slangc
106+
7z a slang-macos-dist-${{matrix.platform}}.zip libslang.dylib
107+
7z a slang-macos-dist-${{matrix.platform}}.zip slangd
108+
7z a slang-macos-dist-${{matrix.platform}}.zip slangc
109109
timeout 1000 gon ./extras/macos-notarize.json
110110
- name: UploadNotarizedBinary
111111
if: always()
112112
uses: softprops/action-gh-release@v1
113113
with:
114114
files: |
115-
slang-macos-dist.zip
115+
slang-macos-dist-${{matrix.platform}}.zip
116116
env:
117117
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
118118

.github/workflows/release-windows.yml

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ jobs:
2828
run: |
2929
.\premake.bat vs2019 --arch=x64 --ignore-deps=slang-llvm,slang-glslang --no-progress=true
3030
MSBuild.exe slang.sln -v:m -m -property:Configuration=Release -property:Platform=x64 -property:WindowsTargetPlatformVersion=10.0.19041.0
31+
Remove-Item .\bin\* -Recurse -Force
3132
.\premake.bat vs2019 --arch=${{matrix.platform}} --ignore-deps=slang-llvm,slang-glslang --no-progress=true --skip-source-generation=true --deploy-slang-llvm=false --deploy-slang-glslang=false
3233
# Do the premake for the actual target, downloading dependencies if necessary
3334
- name: premake

github_build.sh

+2
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ if [[ "${ARCH}" != "${TARGETARCH}" ]]; then
1919
# Build the configuration
2020
make config=${CONFIGURATION}_${ARCH} -j`nproc`
2121

22+
rm -rf ./bin
23+
2224
# Create the makefile
2325
./premake5 gmake --cc=${CC} --enable-embed-stdlib=true --arch=${TARGETARCH} --deps=true --no-progress=true --skip-source-generation=true --deploy-slang-llvm=false --deploy-slang-glslang=false
2426

github_macos_build.sh

+2
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ if [[ "${ARCH}" != "${TARGETARCH}" ]]; then
1919
# Build the configuration
2020
make config=${CONFIGURATION}_${ARCH} -j`sysctl -n hw.ncpu`
2121

22+
rm -rf ./bin
23+
2224
# Create the makefile
2325
./premake5 gmake --cc=${CC} --enable-xlib=false --enable-embed-stdlib=true --arch=${TARGETARCH} --deps=true --no-progress=true --skip-source-generation=true --deploy-slang-llvm=false --deploy-slang-glslang=false
2426

0 commit comments

Comments
 (0)