Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Including fmuproxy.jar in distribution. #141

Merged
merged 2 commits into from
May 14, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/ci-server-go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,13 +78,18 @@ jobs:
run: |
cp ./cse-server-go.exe dist/bin
cp ./run-windows.cmd ./dist
cp ./run-fmuproxy.cmd ./dist
if: runner.os == 'Windows'
- name: Prepare Linux distribution
run: |
mkdir -p dist/bin
cp ./cse-server-go dist/bin
cp ./run-linux ./dist
cp ./run-fmuproxy ./dist
sh ./set-rpath ./dist/lib
if: runner.os == 'Linux'
- name: Download fmuproxy
run: curl https://github.com/NTNU-IHB/FMU-proxy/releases/download/v0.6.1/fmu-proxy.jar -o dist/bin/fmu-proxy.jar -L
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
Expand Down
2 changes: 2 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
module cse-server-go

go 1.14

require (
github.com/gobuffalo/buffalo-plugins v1.11.0 // indirect
github.com/gobuffalo/meta v0.0.0-20190120163247-50bbb1fa260d // indirect
Expand Down