Skip to content

Commit b90837b

Browse files
committed
Add Go build
1 parent 40e1439 commit b90837b

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

.github/workflows/build.yml

+10-3
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
cmake -B build .
5959
cmake --build build
6060
mkdir -p /tmp/upload/c
61-
cp build/wsgup /tmp/upload/c/wsgup
61+
cp build/wsgup /tmp/upload/c
6262
env:
6363
Configuration: ${{ matrix.configuration }}
6464

@@ -67,8 +67,15 @@ jobs:
6767
cd $GITHUB_WORKSPACE/csharp/wsgup
6868
dotnet build -c Release
6969
mkdir -p /tmp/upload/csharp
70-
cp bin/Release/netcoreapp3.0/wsgup.dll /tmp/upload/csharp/wsgup.dll
71-
cp bin/Release/netcoreapp3.0/wsgup /tmp/upload/csharp/wsgup
70+
cp bin/Release/netcoreapp3.0/wsgup.dll /tmp/upload/csharp
71+
cp bin/Release/netcoreapp3.0/wsgup /tmp/upload/csharp
72+
73+
- name: "Build Go"
74+
run: |
75+
cd $GITHUB_WORKSPACE/go/wsgup
76+
go build
77+
mkdir -p /tmp/upload/go
78+
cp wsgup /tmp/upload/go
7279
7380
- name: Upload Artifact
7481
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)