2021-01-06 14:27:51 -08:00
|
|
|
name: Check-in tests
|
|
|
|
|
2022-03-23 20:51:52 +01:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- 'main'
|
|
|
|
- 'releases-**'
|
|
|
|
pull_request:
|
|
|
|
workflow_dispatch:
|
2021-01-06 14:27:51 -08:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
2022-03-23 20:51:52 +01:00
|
|
|
ci-ubuntu-server:
|
|
|
|
runs-on: ubuntu-18.04
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
db:
|
|
|
|
- sqlite
|
|
|
|
- mysql
|
|
|
|
- postgres
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2022-04-19 21:18:47 -04:00
|
|
|
uses: actions/checkout@v3
|
2022-03-23 20:51:52 +01:00
|
|
|
|
|
|
|
- name: Set up Go
|
2022-04-19 21:18:47 -04:00
|
|
|
uses: actions/setup-go@v3
|
2022-03-23 20:51:52 +01:00
|
|
|
with:
|
2022-04-19 21:18:47 -04:00
|
|
|
go-version: 1.18.1
|
2022-03-23 20:51:52 +01:00
|
|
|
|
|
|
|
- name: "Test server: ${{matrix['db']}}"
|
|
|
|
run: make server-test-${{matrix['db']}}
|
|
|
|
|
|
|
|
ci-ubuntu-webapp:
|
2021-03-26 13:56:39 -07:00
|
|
|
runs-on: ubuntu-18.04
|
2021-01-06 14:27:51 -08:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2022-04-19 21:18:47 -04:00
|
|
|
uses: actions/checkout@v3
|
2021-01-06 14:27:51 -08:00
|
|
|
|
2022-03-04 16:14:16 +02:00
|
|
|
- name: npm ci
|
2022-07-13 01:28:13 -05:00
|
|
|
run: |
|
|
|
|
cd webapp && npm ci && cd -
|
|
|
|
cd mattermost-plugin/webapp && npm ci
|
2021-01-06 14:27:51 -08:00
|
|
|
|
|
|
|
- name: Set up Go
|
2022-04-19 21:18:47 -04:00
|
|
|
uses: actions/setup-go@v3
|
2021-01-06 14:27:51 -08:00
|
|
|
with:
|
2022-04-19 21:18:47 -04:00
|
|
|
go-version: 1.18.1
|
2021-01-06 14:27:51 -08:00
|
|
|
|
2021-05-25 15:26:20 +05:30
|
|
|
- name: Setup Node
|
2022-04-19 21:18:47 -04:00
|
|
|
uses: actions/setup-node@v3
|
2021-05-25 15:26:20 +05:30
|
|
|
with:
|
|
|
|
node-version: 16.1.0
|
|
|
|
|
2021-01-06 14:27:51 -08:00
|
|
|
- name: Build Linux server
|
|
|
|
run: make server-linux-package
|
|
|
|
|
|
|
|
- name: Copy server binary for Cypress
|
2021-01-28 14:23:52 -08:00
|
|
|
run: cp bin/linux/focalboard-server bin/
|
2021-01-06 14:27:51 -08:00
|
|
|
|
|
|
|
- name: Upload server package
|
|
|
|
uses: actions/upload-artifact@v1
|
|
|
|
with:
|
2021-01-26 10:48:32 -08:00
|
|
|
name: focalboard-server-linux-amd64.tar.gz
|
|
|
|
path: ${{ github.workspace }}/dist/focalboard-server-linux-amd64.tar.gz
|
2021-01-06 14:27:51 -08:00
|
|
|
|
2022-07-13 01:28:13 -05:00
|
|
|
- name: Lint & test webapp
|
|
|
|
run: make webapp-ci
|
2022-04-13 10:17:04 -07:00
|
|
|
|
|
|
|
ci-windows-server:
|
|
|
|
runs-on: windows-2022
|
|
|
|
|
2022-04-13 15:36:20 -07:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
db:
|
|
|
|
- sqlite
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2022-04-19 21:18:47 -04:00
|
|
|
uses: actions/checkout@v3
|
2022-04-13 15:36:20 -07:00
|
|
|
|
|
|
|
- name: Set up Go
|
2022-04-19 21:18:47 -04:00
|
|
|
uses: actions/setup-go@v3
|
2022-04-13 15:36:20 -07:00
|
|
|
with:
|
2022-04-19 21:18:47 -04:00
|
|
|
go-version: 1.18.1
|
2022-04-13 15:36:20 -07:00
|
|
|
|
|
|
|
- name: "Test server (minimum): ${{matrix['db']}}"
|
|
|
|
run: make server-test-mini-${{matrix['db']}}
|
|
|
|
|
|
|
|
ci-mac-server:
|
|
|
|
runs-on: macos-11
|
|
|
|
|
2022-04-13 10:17:04 -07:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
db:
|
|
|
|
- sqlite
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2022-04-19 21:18:47 -04:00
|
|
|
uses: actions/checkout@v3
|
2022-04-13 10:17:04 -07:00
|
|
|
|
|
|
|
- name: Set up Go
|
2022-04-19 21:18:47 -04:00
|
|
|
uses: actions/setup-go@v3
|
2022-04-13 10:17:04 -07:00
|
|
|
with:
|
2022-04-19 21:18:47 -04:00
|
|
|
go-version: 1.18.1
|
2022-04-13 10:17:04 -07:00
|
|
|
|
2022-04-13 15:47:35 -07:00
|
|
|
- name: "Test server (minimum): ${{matrix['db']}}"
|
|
|
|
run: make server-test-mini-${{matrix['db']}}
|