focalboard/.github/workflows/build-ubuntu.yml

53 lines
1.4 KiB
YAML
Raw Normal View History

2021-01-06 23:27:51 +01:00
name: Build-Ubuntu
on: workflow_dispatch
jobs:
ubuntu:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
2021-01-18 22:57:27 +01:00
- name: Replace token 1
2021-01-18 23:11:02 +01:00
run: sed -i -e "s,placeholder_rudder_dataplane_url,${{ secrets.RUDDER_DATAPLANE_URL }},g" ${{ github.workspace }}/server/services/telemetry/telemetry.go
2021-01-18 22:57:27 +01:00
- name: Replace token 2
2021-01-18 23:11:02 +01:00
run: sed -i -e "s,placeholder_rudder_key,${{ secrets.RUDDER_DEV_KEY }},g" ${{ github.workspace }}/server/services/telemetry/telemetry.go
- name: npm install
run: cd webapp; npm install --no-optional
2021-01-18 22:04:25 +01:00
2021-01-06 23:27:51 +01:00
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.15
2021-01-20 23:47:48 +01:00
- name: apt-get update
run: sudo apt-get update
- name: apt-get install libgtk-3-dev
2021-01-06 23:27:51 +01:00
run: sudo apt-get install libgtk-3-dev
2021-01-20 23:47:48 +01:00
- name: apt-get install libwebkit2gtk-4.0-dev
2021-01-06 23:27:51 +01:00
run: sudo apt-get install libwebkit2gtk-4.0-dev
- name: Build Linux server and app
run: make server-linux-package linux-app
2021-01-19 23:10:14 +01:00
env:
BUILD_NUMBER: ${{ github.run_id }}
2021-01-06 23:27:51 +01:00
- name: Upload server package
uses: actions/upload-artifact@v1
with:
2021-01-26 19:48:32 +01:00
name: focalboard-server-linux-amd64.tar.gz
path: ${{ github.workspace }}/dist/focalboard-server-linux-amd64.tar.gz
2021-01-06 23:27:51 +01:00
- name: Upload app package
uses: actions/upload-artifact@v1
with:
2021-01-26 19:48:32 +01:00
name: focalboard-linux.tar.gz
path: ${{ github.workspace }}/linux/dist/focalboard-linux.tar.gz