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