File tree Expand file tree Collapse file tree 3 files changed +34
-19
lines changed Expand file tree Collapse file tree 3 files changed +34
-19
lines changed Original file line number Diff line number Diff line change @@ -25,11 +25,16 @@ jobs:
2525 submodules : true
2626 - run : ./build.bat
2727 working-directory : ./Build
28- - name : Upload Windows Binary
28+ - name : Upload Windows 64bit Binary
2929 uses : actions/upload-artifact@v2
3030 with :
31- name : act.exe
32- path : act.exe
31+ name : act.win64.exe
32+ path : act.win64.exe
33+ - name : Upload Windows 32bit Binary
34+ uses : actions/upload-artifact@v2
35+ with :
36+ name : act.win32.exe
37+ path : act.win32.exe
3338 - name : Upload MacOS Binary
3439 uses : actions/upload-artifact@v2
3540 with :
@@ -40,14 +45,24 @@ jobs:
4045 with :
4146 name : act.arm.darwin
4247 path : act.arm.darwin
43- - name : Upload Linux Binary
48+ - name : Upload Linux 32bit Binary
49+ uses : actions/upload-artifact@v2
50+ with :
51+ name : act.linux32
52+ path : act.linux32
53+ - name : Upload Linux ARM 32bit Binary
54+ uses : actions/upload-artifact@v2
55+ with :
56+ name : act.arm.linux32
57+ path : act.arm.linux32
58+ - name : Upload Linux 64bit Binary
4459 uses : actions/upload-artifact@v2
4560 with :
46- name : act.linux
47- path : act.linux
48- - name : Upload Linux ARM Binary
61+ name : act.linux64
62+ path : act.linux64
63+ - name : Upload Linux ARM 64bit Binary
4964 uses : actions/upload-artifact@v2
5065 with :
51- name : act.arm.linux
52- path : act.arm.linux
66+ name : act.arm.linux64
67+ path : act.arm.linux64
5368
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ set Sources=actutils.go automaticcomponenttoolkit.go buildbindingccpp.go buildbi
77
88set GOOS = windows
99set GOARCH = amd64
10- echo " Build act.exe"
10+ echo " Build act.win64. exe"
1111go build -o ..\act.win64.exe %Sources%
1212
1313echo " Patching properties of act.win64.exe"
@@ -18,7 +18,7 @@ set GOARCH=386
1818echo " Build act.win32.exe"
1919go build -o ..\act.win32.exe %Sources%
2020
21- echo " Patching properties of act_win32 .exe"
21+ echo " Patching properties of act.win32 .exe"
2222..\build\verpatch ..\act.win32.exe /high /va 1.7.0 /pv " 1.7.0-develop" /s copyright " (c) 2018-2019 ACT Developers" /s desc " ACT is a code generator for software components" /s productName " Automatic Component Toolkit"
2323
2424set GOOS = linux
@@ -44,14 +44,14 @@ go build -o ..\act.arm.darwin %Sources%
4444set GOOS = linux
4545set GOARCH = arm
4646set GOARM = 5
47- echo " Build act.linux32. arm"
48- go build -o ..\act.linux32. arm %Sources%
47+ echo " Build act.arm.linux32 "
48+ go build -o ..\act.arm.linux32 %Sources%
4949
5050set GOOS = linux
5151set GOARCH = arm64
5252set GOARM = 5
53- echo " Build act.linux64. arm"
54- go build -o ..\act.linux64. arm %Sources%
53+ echo " Build act.arm.linux64 "
54+ go build -o ..\act.arm.linux64 %Sources%
5555
5656copy ..\act.win64.exe ..\act.exe /Y
5757
Original file line number Diff line number Diff line change @@ -38,16 +38,16 @@ export GOOS="darwin"
3838export GOARCH=" arm64"
3939go build -o ../act.arm.darwin $Sources
4040
41- echo " Build act.linux32. arm"
41+ echo " Build act.arm.linux32 "
4242export GOOS=" linux"
4343export GOARM=" 5"
4444export GOARCH=" 386"
45- go build -o ../act.linux32. arm $Sources
45+ go build -o ../act.arm.linux32 $Sources
4646
47- echo " Build act.linux64. arm"
47+ echo " Build act.arm.linux64 "
4848export GOOS=" linux"
4949export GOARCH=" arm64"
5050export GOARM=" 5"
51- go build -o ../act.linux64. arm $Sources
51+ go build -o ../act.arm.linux64 $Sources
5252
5353cd " $startingpath "
You can’t perform that action at this time.
0 commit comments