File tree 2 files changed +23
-12
lines changed
2 files changed +23
-12
lines changed Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
3
# Required tools:
4
- # Dotnet SDK 6 .0+
5
- # Golang 1.14 +
6
- # Node.js 14 +
4
+ # Dotnet SDK 8 .0+
5
+ # Golang 1.21 +
6
+ # Node.js 20 +
7
7
8
8
# call with argument linux-arm64 for ARM architecture
9
9
@@ -114,7 +114,7 @@ npm run build
114
114
115
115
export NODE_OPTIONS=--max-old-space-size=10000
116
116
117
- cd ../../custom-developments/basic_bargraph
117
+ cd ../../../ custom-developments/basic_bargraph
118
118
npm install
119
119
npm run build
120
120
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
3
# Required tools:
4
- # Dotnet SDK 6.0+
5
- # Golang 1.14+
6
- # Node.js 14+
4
+ # Dotnet SDK 8.0+
5
+ # Golang 1.21+
6
+ # Node.js 20+
7
+
8
+ # call with argument osx-arm64 for ARM architecture
7
9
8
10
ARG1=${1:- osx-x64}
9
11
@@ -33,8 +35,16 @@ cd ../lib60870.netcore
33
35
dotnet publish --no-self-contained --runtime $ARG1 -p:PublishReadyToRun=true -c Release -o ../../bin/
34
36
35
37
cd ../OPC-UA-Client
38
+ dotnet restore
36
39
dotnet publish --no-self-contained --runtime $ARG1 -p:PublishReadyToRun=true -c Release -o ../../bin/
37
40
41
+ cd ../opcdaaehda-client-solution-net
42
+ dotnet build -f net8.0-windows DaAeHdaNetStandard.sln
43
+
44
+ cd ../OPC-DA-Client
45
+ dotnet restore
46
+ dotnet publish --no-self-contained --runtime win-x64 -p:PublishReadyToRun=true -f net8.0-windows -c Release -o ../../bin-wine/ OPC-DA-Client.csproj
47
+
38
48
export GOBIN=~ /json-scada/bin
39
49
go env -w GO111MODULE=auto
40
50
@@ -87,6 +97,11 @@ cd ../mongofw
87
97
npm install
88
98
cd ../mongowr
89
99
npm install
100
+
101
+ cd ../AdminUI
102
+ npm install
103
+ npm run build
104
+
90
105
cd ../log-io/ui
91
106
npm install
92
107
npm run build
@@ -97,13 +112,9 @@ cd ../inputs/file
97
112
npm install
98
113
npm run build
99
114
100
- cd ../AdminUI
101
- npm install
102
- npm run build
103
-
104
115
export NODE_OPTIONS=--max-old-space-size=10000
105
116
106
- cd ../../custom-developments/basic_bargraph
117
+ cd ../../../ custom-developments/basic_bargraph
107
118
npm install
108
119
npm run build
109
120
You can’t perform that action at this time.
0 commit comments