File tree 4 files changed +13
-8
lines changed
4 files changed +13
-8
lines changed Original file line number Diff line number Diff line change 72
72
id : package
73
73
run : |
74
74
export SLANG_OS_NAME=macos
75
- export SLANG_ARCH_NAME=`uname -p`
75
+ export SLANG_ARCH_NAME=${{matrix.platform}}
76
76
export TAG_NAME=`git describe --tags`
77
77
export SLANG_TAG=${TAG_NAME#v}
78
78
echo "tag:$TAG_NAME"
@@ -100,19 +100,19 @@ jobs:
100
100
env :
101
101
AC_PASSWORD : ${{secrets.APPLE_ID_PASSWORD}}
102
102
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
109
109
timeout 1000 gon ./extras/macos-notarize.json
110
110
- name : UploadNotarizedBinary
111
111
if : always()
112
112
uses : softprops/action-gh-release@v1
113
113
with :
114
114
files : |
115
- slang-macos-dist.zip
115
+ slang-macos-dist-${{matrix.platform}} .zip
116
116
env :
117
117
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
118
118
Original file line number Diff line number Diff line change 28
28
run : |
29
29
.\premake.bat vs2019 --arch=x64 --ignore-deps=slang-llvm,slang-glslang --no-progress=true
30
30
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
31
32
.\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
32
33
# Do the premake for the actual target, downloading dependencies if necessary
33
34
- name : premake
Original file line number Diff line number Diff line change @@ -19,6 +19,8 @@ if [[ "${ARCH}" != "${TARGETARCH}" ]]; then
19
19
# Build the configuration
20
20
make config=${CONFIGURATION} _${ARCH} -j` nproc`
21
21
22
+ rm -rf ./bin
23
+
22
24
# Create the makefile
23
25
./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
24
26
Original file line number Diff line number Diff line change @@ -19,6 +19,8 @@ if [[ "${ARCH}" != "${TARGETARCH}" ]]; then
19
19
# Build the configuration
20
20
make config=${CONFIGURATION} _${ARCH} -j` sysctl -n hw.ncpu`
21
21
22
+ rm -rf ./bin
23
+
22
24
# Create the makefile
23
25
./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
24
26
You can’t perform that action at this time.
0 commit comments