Compare commits
9 Commits
176320fd88
...
v2.0.0-202
| Author | SHA1 | Date | |
|---|---|---|---|
|
4ec9e007df
|
|||
| 7c04dd5138 | |||
| 080a1ce8d8 | |||
|
9f94e43ebc
|
|||
| f35fd2aa7f | |||
| e0eb3313c2 | |||
| d2395fe4eb | |||
| 6c458a5724 | |||
| 0001e056db |
36
.github/workflows/go-dev.yml
vendored
Normal file
36
.github/workflows/go-dev.yml
vendored
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
# This workflow will build a golang project
|
||||||
|
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
|
||||||
|
|
||||||
|
name: Go Dev Build
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: ["develop"]
|
||||||
|
pull_request:
|
||||||
|
branches: ["develop"]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
BuildWin64:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- name: build
|
||||||
|
uses: addnab/docker-run-action@v3
|
||||||
|
with:
|
||||||
|
image: x1unix/go-mingw:1.20
|
||||||
|
options: -v ${{ github.workspace }}:/go/work -w /go/work -e GOARCH=amd64 -e CGO_ENABLED=1
|
||||||
|
|
||||||
|
run: |
|
||||||
|
go build -o ./ifxmetrics_x64.dll -buildmode=c-shared -buildvcs=false -ldflags "-w -s -X main.EXTENSION_VERSION=${{github.ref_name}}-${{github.sha}}" ./extension/cmd
|
||||||
|
|
||||||
|
BuildWin32:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: build
|
||||||
|
uses: addnab/docker-run-action@v3
|
||||||
|
with:
|
||||||
|
image: x1unix/go-mingw:1.20
|
||||||
|
options: -v ${{ github.workspace }}:/go/work -w /go/work -e GOARCH=386 -e CGO_ENABLED=1
|
||||||
|
|
||||||
|
run: |
|
||||||
|
go build -o ./ifxmetrics.dll -buildmode=c-shared -buildvcs=false -ldflags "-w -s -X main.EXTENSION_VERSION=${{github.ref_name}}-${{github.sha}}" ./extension/cmd
|
||||||
25
.github/workflows/go-main.yml
vendored
Normal file
25
.github/workflows/go-main.yml
vendored
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
# This workflow will build a golang project
|
||||||
|
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
|
||||||
|
|
||||||
|
name: Go Main
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ "master" ]
|
||||||
|
pull_request:
|
||||||
|
branches: [ "master" ]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Set up Go
|
||||||
|
uses: actions/setup-go@v4
|
||||||
|
with:
|
||||||
|
go-version: '1.20'
|
||||||
|
|
||||||
|
- name: Build
|
||||||
|
run: go build -v ./extension/cmd/...
|
||||||
@@ -29,7 +29,7 @@ In the below example, the `milsimServerEfficiency` event handler will send data
|
|||||||
// ...
|
// ...
|
||||||
"cbaEventHandlers": {
|
"cbaEventHandlers": {
|
||||||
"milsimServerEfficiency": {
|
"milsimServerEfficiency": {
|
||||||
"name": "milsimServerEfficiency",
|
"eventName": "milsimServerEfficiency",
|
||||||
"description": "EVENTHANDLER. Tracks the efficiency of the server.",
|
"description": "EVENTHANDLER. Tracks the efficiency of the server.",
|
||||||
"enabled": true,
|
"enabled": true,
|
||||||
"bucket": "server_performance",
|
"bucket": "server_performance",
|
||||||
@@ -144,10 +144,10 @@ Run this from the project root.
|
|||||||
docker build -t indifox926/build-a3go:linux-so -f ./build/Dockerfile.build .
|
docker build -t indifox926/build-a3go:linux-so -f ./build/Dockerfile.build .
|
||||||
|
|
||||||
# Compile x64 Linux .so
|
# Compile x64 Linux .so
|
||||||
docker run --rm -it -v ${PWD}:/app -e GOOS=linux -e GOARCH=amd64 -e CGO_ENABLED=1 -e CC=gcc indifox926/build-a3go:linux-so go build -o ./ifxmetrics_x64.so -linkshared -ldflags "-w -s -X main.EXTENSION_VERSION=${IFXMETRICS_BUILD_VER}" ./extension/cmd
|
docker run --rm -it -v ${PWD}:/app -e GOOS=linux -e GOARCH=amd64 -e CGO_ENABLED=1 indifox926/build-a3go:linux-so go build -o ./ifxmetrics_x64.so -linkshared -ldflags "-w -s -X main.EXTENSION_VERSION=${IFXMETRICS_BUILD_VER}" ./extension/cmd
|
||||||
|
|
||||||
# Compile x86 Linux .so
|
# Compile x86 Linux .so
|
||||||
docker run --rm -it -v ${PWD}:/app -e GOOS=linux -e GOARCH=386 -e CGO_ENABLED=1 -e CC=gcc indifox926/build-a3go:linux-so go build -o ./ifxmetrics.so -linkshared -ldflags "-w -s -X main.EXTENSION_VERSION=${IFXMETRICS_BUILD_VER}" ./extension/cmd
|
docker run --rm -it -v ${PWD}:/app -e GOOS=linux -e GOARCH=386 -e CGO_ENABLED=1 indifox926/build-a3go:linux-so go build -o ./ifxmetrics.so -linkshared -ldflags "-w -s -X main.EXTENSION_VERSION=${IFXMETRICS_BUILD_VER}" ./extension/cmd
|
||||||
```
|
```
|
||||||
|
|
||||||
### ADDON: COMPILE USING HEMTT
|
### ADDON: COMPILE USING HEMTT
|
||||||
|
|||||||
Reference in New Issue
Block a user