Skip to content

Commit 4fb0f76

Browse files
Rename created files
1 parent 78ffde0 commit 4fb0f76

File tree

3 files changed

+34
-19
lines changed

3 files changed

+34
-19
lines changed

.github/workflows/build.yml

Lines changed: 24 additions & 9 deletions
Original file line numberDiff line numberDiff 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

Build/build.bat

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ set Sources=actutils.go automaticcomponenttoolkit.go buildbindingccpp.go buildbi
77

88
set GOOS=windows
99
set GOARCH=amd64
10-
echo "Build act.exe"
10+
echo "Build act.win64.exe"
1111
go build -o ..\act.win64.exe %Sources%
1212

1313
echo "Patching properties of act.win64.exe"
@@ -18,7 +18,7 @@ set GOARCH=386
1818
echo "Build act.win32.exe"
1919
go 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

2424
set GOOS=linux
@@ -44,14 +44,14 @@ go build -o ..\act.arm.darwin %Sources%
4444
set GOOS=linux
4545
set GOARCH=arm
4646
set 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

5050
set GOOS=linux
5151
set GOARCH=arm64
5252
set 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

5656
copy ..\act.win64.exe ..\act.exe /Y
5757

Build/build.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,16 +38,16 @@ export GOOS="darwin"
3838
export GOARCH="arm64"
3939
go build -o ../act.arm.darwin $Sources
4040

41-
echo "Build act.linux32.arm"
41+
echo "Build act.arm.linux32"
4242
export GOOS="linux"
4343
export GOARM="5"
4444
export 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"
4848
export GOOS="linux"
4949
export GOARCH="arm64"
5050
export GOARM="5"
51-
go build -o ../act.linux64.arm $Sources
51+
go build -o ../act.arm.linux64 $Sources
5252

5353
cd "$startingpath"

0 commit comments

Comments
 (0)