2021-07-23 09:00:07 +00:00
|
|
|
name: Build Binaries
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- '*'
|
|
|
|
|
|
|
|
env:
|
2024-02-07 16:14:07 +00:00
|
|
|
GO_VERSION: '1.22'
|
2021-07-23 09:00:07 +00:00
|
|
|
CGO_ENABLED: 0
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
|
|
|
build-webui:
|
2024-04-22 15:04:05 +00:00
|
|
|
runs-on: ubuntu-latest
|
2021-07-23 09:00:07 +00:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Check out code
|
2024-01-09 16:00:07 +00:00
|
|
|
uses: actions/checkout@v4
|
2021-07-23 09:00:07 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Build webui
|
|
|
|
run: |
|
2022-02-18 14:44:08 +00:00
|
|
|
make clean-webui generate-webui
|
2021-09-15 08:36:14 +00:00
|
|
|
tar czvf webui.tar.gz ./webui/static/
|
2021-07-23 09:00:07 +00:00
|
|
|
|
|
|
|
- name: Artifact webui
|
2024-02-01 13:08:06 +00:00
|
|
|
uses: actions/upload-artifact@v4
|
2021-07-23 09:00:07 +00:00
|
|
|
with:
|
|
|
|
name: webui.tar.gz
|
|
|
|
path: webui.tar.gz
|
|
|
|
|
|
|
|
build:
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2024-04-22 15:04:05 +00:00
|
|
|
os: [ ubuntu-latest, macos-latest, windows-latest ]
|
2021-07-23 09:00:07 +00:00
|
|
|
needs:
|
|
|
|
- build-webui
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Check out code
|
2024-01-09 16:00:07 +00:00
|
|
|
uses: actions/checkout@v4
|
2021-07-23 09:00:07 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
2024-01-09 16:00:07 +00:00
|
|
|
- name: Set up Go ${{ env.GO_VERSION }}
|
|
|
|
uses: actions/setup-go@v5
|
2021-07-23 09:00:07 +00:00
|
|
|
with:
|
2024-01-09 16:00:07 +00:00
|
|
|
go-version: ${{ env.GO_VERSION }}
|
2021-07-23 09:00:07 +00:00
|
|
|
|
|
|
|
- name: Artifact webui
|
2024-02-01 13:08:06 +00:00
|
|
|
uses: actions/download-artifact@v4
|
2021-07-23 09:00:07 +00:00
|
|
|
with:
|
|
|
|
name: webui.tar.gz
|
|
|
|
|
|
|
|
- name: Untar webui
|
|
|
|
run: tar xvf webui.tar.gz
|
|
|
|
|
|
|
|
- name: Build
|
|
|
|
run: make binary
|