Skip to content

Commit

Permalink
Add Go build
Browse files Browse the repository at this point in the history
  • Loading branch information
gyk4j committed Jul 30, 2024
1 parent 40e1439 commit b90837b
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
cmake -B build .
cmake --build build
mkdir -p /tmp/upload/c
cp build/wsgup /tmp/upload/c/wsgup
cp build/wsgup /tmp/upload/c
env:
Configuration: ${{ matrix.configuration }}

Expand All @@ -67,8 +67,15 @@ jobs:
cd $GITHUB_WORKSPACE/csharp/wsgup
dotnet build -c Release
mkdir -p /tmp/upload/csharp
cp bin/Release/netcoreapp3.0/wsgup.dll /tmp/upload/csharp/wsgup.dll
cp bin/Release/netcoreapp3.0/wsgup /tmp/upload/csharp/wsgup
cp bin/Release/netcoreapp3.0/wsgup.dll /tmp/upload/csharp
cp bin/Release/netcoreapp3.0/wsgup /tmp/upload/csharp
- name: "Build Go"
run: |
cd $GITHUB_WORKSPACE/go/wsgup
go build
mkdir -p /tmp/upload/go
cp wsgup /tmp/upload/go
- name: Upload Artifact
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit b90837b

Please sign in to comment.