2020-01-31 15:25:53 +01:00
|
|
|
name: Budibase CI
|
|
|
|
|
2023-06-20 13:51:57 +02:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2023-04-20 20:30:48 +02:00
|
|
|
on:
|
|
|
|
# Trigger the workflow on push or pull request,
|
|
|
|
# but only for the master branch
|
|
|
|
push:
|
2020-01-31 15:25:53 +01:00
|
|
|
branches:
|
|
|
|
- master
|
2023-04-20 20:30:48 +02:00
|
|
|
pull_request:
|
|
|
|
workflow_dispatch:
|
2023-11-17 18:44:06 +01:00
|
|
|
workflow_call:
|
|
|
|
inputs:
|
|
|
|
run_as_oss:
|
|
|
|
type: boolean
|
|
|
|
required: false
|
|
|
|
description: Force running checks as if it was an OSS contributor
|
|
|
|
default: false
|
2020-01-31 15:25:53 +01:00
|
|
|
|
2022-04-13 23:04:28 +02:00
|
|
|
env:
|
2022-04-20 17:21:05 +02:00
|
|
|
BRANCH: ${{ github.event.pull_request.head.ref }}
|
2022-04-21 23:12:57 +02:00
|
|
|
BASE_BRANCH: ${{ github.event.pull_request.base.ref}}
|
2023-06-01 16:07:17 +02:00
|
|
|
PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
|
2023-08-18 15:33:21 +02:00
|
|
|
NX_BASE_BRANCH: origin/${{ github.base_ref }}
|
2023-10-20 15:16:48 +02:00
|
|
|
USE_NX_AFFECTED: ${{ github.event_name == 'pull_request' }}
|
2023-11-17 18:49:41 +01:00
|
|
|
IS_OSS_CONTRIBUTOR: ${{ inputs.run_as_oss == true || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != 'Budibase/budibase') }}
|
2022-04-13 23:04:28 +02:00
|
|
|
|
2020-01-31 15:25:53 +01:00
|
|
|
jobs:
|
2023-02-21 18:13:24 +01:00
|
|
|
lint:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-11-17 17:08:41 +01:00
|
|
|
- name: Checkout repo
|
2023-06-29 12:13:09 +02:00
|
|
|
uses: actions/checkout@v3
|
|
|
|
with:
|
2023-11-17 17:41:07 +01:00
|
|
|
submodules: ${{ env.IS_OSS_CONTRIBUTOR == 'false' }}
|
2023-06-29 12:13:09 +02:00
|
|
|
token: ${{ secrets.PERSONAL_ACCESS_TOKEN || github.token }}
|
|
|
|
|
2023-08-18 15:33:21 +02:00
|
|
|
- name: Use Node.js 18.x
|
2023-05-17 11:04:46 +02:00
|
|
|
uses: actions/setup-node@v3
|
2023-04-20 20:30:48 +02:00
|
|
|
with:
|
2023-08-18 15:33:21 +02:00
|
|
|
node-version: 18.x
|
2023-11-17 17:44:50 +01:00
|
|
|
cache: yarn
|
2023-08-18 15:33:21 +02:00
|
|
|
- run: yarn --frozen-lockfile
|
2023-04-20 20:30:48 +02:00
|
|
|
- run: yarn lint
|
2023-02-21 18:13:24 +01:00
|
|
|
|
2020-01-31 15:25:53 +01:00
|
|
|
build:
|
2020-05-14 22:48:02 +02:00
|
|
|
runs-on: ubuntu-latest
|
2023-02-21 18:13:24 +01:00
|
|
|
steps:
|
2023-11-17 17:08:41 +01:00
|
|
|
- name: Checkout repo
|
2023-06-29 13:12:46 +02:00
|
|
|
uses: actions/checkout@v3
|
2023-04-20 20:30:48 +02:00
|
|
|
with:
|
2023-11-17 17:41:07 +01:00
|
|
|
submodules: ${{ env.IS_OSS_CONTRIBUTOR == 'false' }}
|
2023-06-01 16:04:50 +02:00
|
|
|
token: ${{ secrets.PERSONAL_ACCESS_TOKEN || github.token }}
|
2023-08-18 15:33:21 +02:00
|
|
|
fetch-depth: 0
|
2023-06-29 13:33:58 +02:00
|
|
|
|
2023-08-18 15:33:21 +02:00
|
|
|
- name: Use Node.js 18.x
|
2023-05-17 11:04:46 +02:00
|
|
|
uses: actions/setup-node@v3
|
2023-02-21 18:13:24 +01:00
|
|
|
with:
|
2023-08-18 15:33:21 +02:00
|
|
|
node-version: 18.x
|
2023-11-17 17:44:50 +01:00
|
|
|
cache: yarn
|
2023-08-18 15:33:21 +02:00
|
|
|
- run: yarn --frozen-lockfile
|
|
|
|
|
2023-05-26 13:54:10 +02:00
|
|
|
# Run build all the projects
|
2023-08-18 15:33:21 +02:00
|
|
|
- name: Build
|
|
|
|
run: |
|
|
|
|
yarn build
|
2023-05-26 13:54:10 +02:00
|
|
|
# Check the types of the projects built via esbuild
|
2023-08-18 15:33:21 +02:00
|
|
|
- name: Check types
|
|
|
|
run: |
|
|
|
|
if ${{ env.USE_NX_AFFECTED }}; then
|
|
|
|
yarn check:types --since=${{ env.NX_BASE_BRANCH }}
|
|
|
|
else
|
|
|
|
yarn check:types
|
|
|
|
fi
|
2023-02-21 18:13:24 +01:00
|
|
|
|
2023-05-23 09:30:35 +02:00
|
|
|
test-libraries:
|
2023-02-21 18:13:24 +01:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-11-17 17:08:41 +01:00
|
|
|
- name: Checkout repo
|
2023-06-29 13:12:46 +02:00
|
|
|
uses: actions/checkout@v3
|
2023-04-20 20:30:48 +02:00
|
|
|
with:
|
2023-11-17 17:41:07 +01:00
|
|
|
submodules: ${{ env.IS_OSS_CONTRIBUTOR == 'false' }}
|
2023-06-01 16:15:20 +02:00
|
|
|
token: ${{ secrets.PERSONAL_ACCESS_TOKEN || github.token }}
|
2023-08-18 15:33:21 +02:00
|
|
|
fetch-depth: 0
|
2023-06-29 13:33:58 +02:00
|
|
|
|
2023-08-18 15:33:21 +02:00
|
|
|
- name: Use Node.js 18.x
|
2023-05-17 11:04:46 +02:00
|
|
|
uses: actions/setup-node@v3
|
2023-02-21 18:13:24 +01:00
|
|
|
with:
|
2023-08-18 15:33:21 +02:00
|
|
|
node-version: 18.x
|
2023-11-17 17:44:50 +01:00
|
|
|
cache: yarn
|
2023-08-18 15:33:21 +02:00
|
|
|
- run: yarn --frozen-lockfile
|
|
|
|
- name: Test
|
|
|
|
run: |
|
|
|
|
if ${{ env.USE_NX_AFFECTED }}; then
|
|
|
|
yarn test --ignore=@budibase/worker --ignore=@budibase/server --ignore=@budibase/pro --since=${{ env.NX_BASE_BRANCH }}
|
|
|
|
else
|
|
|
|
yarn test --ignore=@budibase/worker --ignore=@budibase/server --ignore=@budibase/pro
|
|
|
|
fi
|
2023-03-27 23:55:57 +02:00
|
|
|
- uses: codecov/codecov-action@v3
|
2023-02-21 18:13:24 +01:00
|
|
|
with:
|
|
|
|
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
|
|
|
|
name: codecov-umbrella
|
|
|
|
verbose: true
|
2020-01-31 15:25:53 +01:00
|
|
|
|
2023-09-26 18:06:52 +02:00
|
|
|
test-worker:
|
2023-04-18 13:27:12 +02:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-11-17 17:08:41 +01:00
|
|
|
- name: Checkout repo
|
2023-06-29 13:12:46 +02:00
|
|
|
uses: actions/checkout@v3
|
2023-04-20 20:30:48 +02:00
|
|
|
with:
|
2023-11-17 17:41:07 +01:00
|
|
|
submodules: ${{ env.IS_OSS_CONTRIBUTOR == 'false' }}
|
2023-06-01 16:04:50 +02:00
|
|
|
token: ${{ secrets.PERSONAL_ACCESS_TOKEN || github.token }}
|
2023-08-18 15:33:21 +02:00
|
|
|
fetch-depth: 0
|
2023-06-29 13:33:58 +02:00
|
|
|
|
2023-08-18 15:33:21 +02:00
|
|
|
- name: Use Node.js 18.x
|
2023-05-17 11:04:46 +02:00
|
|
|
uses: actions/setup-node@v3
|
2023-04-18 13:27:12 +02:00
|
|
|
with:
|
2023-08-18 15:33:21 +02:00
|
|
|
node-version: 18.x
|
2023-11-17 17:44:50 +01:00
|
|
|
cache: yarn
|
2023-08-18 15:33:21 +02:00
|
|
|
- run: yarn --frozen-lockfile
|
2023-09-26 18:06:52 +02:00
|
|
|
- name: Test worker
|
2023-08-18 15:33:21 +02:00
|
|
|
run: |
|
|
|
|
if ${{ env.USE_NX_AFFECTED }}; then
|
2023-09-26 18:06:52 +02:00
|
|
|
yarn test --scope=@budibase/worker --since=${{ env.NX_BASE_BRANCH }}
|
2023-08-18 15:33:21 +02:00
|
|
|
else
|
2023-09-26 18:06:52 +02:00
|
|
|
yarn test --scope=@budibase/worker
|
|
|
|
fi
|
|
|
|
|
|
|
|
- uses: codecov/codecov-action@v3
|
|
|
|
with:
|
|
|
|
token: ${{ secrets.CODECOV_TOKEN || github.token }} # not required for public repos
|
|
|
|
name: codecov-umbrella
|
|
|
|
verbose: true
|
|
|
|
|
|
|
|
test-server:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-11-17 17:08:41 +01:00
|
|
|
- name: Checkout repo
|
2023-09-26 18:06:52 +02:00
|
|
|
uses: actions/checkout@v3
|
|
|
|
with:
|
2023-11-17 17:41:07 +01:00
|
|
|
submodules: ${{ env.IS_OSS_CONTRIBUTOR == 'false' }}
|
2023-09-26 18:06:52 +02:00
|
|
|
token: ${{ secrets.PERSONAL_ACCESS_TOKEN || github.token }}
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Use Node.js 18.x
|
|
|
|
uses: actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
node-version: 18.x
|
2023-11-17 17:44:50 +01:00
|
|
|
cache: yarn
|
2023-09-26 18:06:52 +02:00
|
|
|
- run: yarn --frozen-lockfile
|
|
|
|
- name: Test server
|
|
|
|
run: |
|
|
|
|
if ${{ env.USE_NX_AFFECTED }}; then
|
|
|
|
yarn test --scope=@budibase/server --since=${{ env.NX_BASE_BRANCH }}
|
|
|
|
else
|
|
|
|
yarn test --scope=@budibase/server
|
2023-08-18 15:33:21 +02:00
|
|
|
fi
|
|
|
|
|
2023-05-22 16:30:23 +02:00
|
|
|
- uses: codecov/codecov-action@v3
|
|
|
|
with:
|
2023-06-01 16:04:50 +02:00
|
|
|
token: ${{ secrets.CODECOV_TOKEN || github.token }} # not required for public repos
|
2023-05-22 16:30:23 +02:00
|
|
|
name: codecov-umbrella
|
|
|
|
verbose: true
|
2023-04-18 13:27:12 +02:00
|
|
|
|
2023-05-22 16:38:36 +02:00
|
|
|
test-pro:
|
|
|
|
runs-on: ubuntu-latest
|
2023-08-18 15:33:21 +02:00
|
|
|
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == 'Budibase/budibase'
|
2023-05-22 16:38:36 +02:00
|
|
|
steps:
|
2023-06-29 13:12:46 +02:00
|
|
|
- name: Checkout repo and submodules
|
|
|
|
uses: actions/checkout@v3
|
2023-05-22 16:38:36 +02:00
|
|
|
with:
|
|
|
|
submodules: true
|
2023-06-01 16:04:50 +02:00
|
|
|
token: ${{ secrets.PERSONAL_ACCESS_TOKEN || github.token }}
|
2023-08-18 15:33:21 +02:00
|
|
|
fetch-depth: 0
|
2023-06-29 13:12:46 +02:00
|
|
|
|
2023-08-18 15:33:21 +02:00
|
|
|
- name: Use Node.js 18.x
|
2023-05-22 16:38:36 +02:00
|
|
|
uses: actions/setup-node@v3
|
|
|
|
with:
|
2023-08-18 15:33:21 +02:00
|
|
|
node-version: 18.x
|
2023-11-17 17:44:50 +01:00
|
|
|
cache: yarn
|
2023-08-18 15:33:21 +02:00
|
|
|
- run: yarn --frozen-lockfile
|
|
|
|
- name: Test
|
|
|
|
run: |
|
|
|
|
if ${{ env.USE_NX_AFFECTED }}; then
|
|
|
|
yarn test --scope=@budibase/pro --since=${{ env.NX_BASE_BRANCH }}
|
|
|
|
else
|
|
|
|
yarn test --scope=@budibase/pro
|
|
|
|
fi
|
2023-05-22 16:38:36 +02:00
|
|
|
|
2023-04-05 16:33:56 +02:00
|
|
|
integration-test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-11-17 17:08:41 +01:00
|
|
|
- name: Checkout repo
|
2023-06-29 13:12:46 +02:00
|
|
|
uses: actions/checkout@v3
|
2023-04-20 20:30:48 +02:00
|
|
|
with:
|
2023-11-17 17:41:07 +01:00
|
|
|
submodules: ${{ env.IS_OSS_CONTRIBUTOR == 'false' }}
|
2023-06-01 16:04:50 +02:00
|
|
|
token: ${{ secrets.PERSONAL_ACCESS_TOKEN || github.token }}
|
2023-06-29 13:33:58 +02:00
|
|
|
|
2023-08-18 15:33:21 +02:00
|
|
|
- name: Use Node.js 18.x
|
2023-05-17 11:04:46 +02:00
|
|
|
uses: actions/setup-node@v3
|
2023-04-05 16:33:56 +02:00
|
|
|
with:
|
2023-08-18 15:33:21 +02:00
|
|
|
node-version: 18.x
|
2023-11-17 17:44:50 +01:00
|
|
|
cache: yarn
|
2023-08-18 15:33:21 +02:00
|
|
|
- run: yarn --frozen-lockfile
|
2023-08-21 12:56:33 +02:00
|
|
|
- name: Build packages
|
2023-10-19 11:08:56 +02:00
|
|
|
run: yarn build --scope @budibase/server --scope @budibase/worker
|
2023-11-17 18:23:31 +01:00
|
|
|
- name: Build backend-core for OSS contributor (required for pro)
|
2023-11-17 18:16:30 +01:00
|
|
|
if: ${{ env.IS_OSS_CONTRIBUTOR == 'true' }}
|
|
|
|
run: yarn build --scope @budibase/backend-core
|
2023-05-17 11:59:14 +02:00
|
|
|
- name: Run tests
|
|
|
|
run: |
|
2023-04-05 16:33:56 +02:00
|
|
|
cd qa-core
|
|
|
|
yarn setup
|
2023-07-20 11:52:28 +02:00
|
|
|
yarn serve:test:self:ci
|
2023-04-05 16:33:56 +02:00
|
|
|
env:
|
|
|
|
BB_ADMIN_USER_EMAIL: admin
|
2023-04-11 18:16:04 +02:00
|
|
|
BB_ADMIN_USER_PASSWORD: admin
|
2023-06-20 13:54:25 +02:00
|
|
|
|
|
|
|
check-pro-submodule:
|
|
|
|
runs-on: ubuntu-latest
|
2023-08-18 15:33:21 +02:00
|
|
|
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == 'Budibase/budibase'
|
2023-06-20 13:54:25 +02:00
|
|
|
steps:
|
2023-06-29 13:12:46 +02:00
|
|
|
- name: Checkout repo and submodules
|
2023-06-20 13:54:25 +02:00
|
|
|
uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
submodules: true
|
|
|
|
token: ${{ secrets.PERSONAL_ACCESS_TOKEN || github.token }}
|
2023-09-07 11:59:29 +02:00
|
|
|
fetch-depth: 0
|
2023-06-20 13:54:25 +02:00
|
|
|
|
|
|
|
- name: Check pro commit
|
|
|
|
id: get_pro_commits
|
|
|
|
run: |
|
2023-06-20 13:59:45 +02:00
|
|
|
cd packages/pro
|
2023-06-20 13:54:25 +02:00
|
|
|
pro_commit=$(git rev-parse HEAD)
|
2023-06-20 14:53:58 +02:00
|
|
|
|
2023-07-05 10:34:11 +02:00
|
|
|
branch="${{ github.base_ref || github.ref_name }}"
|
2023-07-05 11:13:25 +02:00
|
|
|
echo "Running on branch '$branch' (base_ref=${{ github.base_ref }}, ref_name=${{ github.head_ref }})"
|
2023-06-20 15:01:44 +02:00
|
|
|
|
2023-10-16 12:04:33 +02:00
|
|
|
base_commit=$(git rev-parse origin/master)
|
2023-06-20 14:53:58 +02:00
|
|
|
|
2023-10-10 12:34:14 +02:00
|
|
|
if [[ ! -z $base_commit ]]; then
|
|
|
|
echo "target_branch=$branch"
|
|
|
|
echo "target_branch=$branch" >> "$GITHUB_OUTPUT"
|
|
|
|
echo "pro_commit=$pro_commit"
|
|
|
|
echo "pro_commit=$pro_commit" >> "$GITHUB_OUTPUT"
|
|
|
|
echo "base_commit=$base_commit"
|
|
|
|
echo "base_commit=$base_commit" >> "$GITHUB_OUTPUT"
|
|
|
|
else
|
|
|
|
echo "Nothing to do - branch to branch merge."
|
|
|
|
fi
|
2023-06-20 13:54:25 +02:00
|
|
|
|
2023-10-10 12:34:14 +02:00
|
|
|
- name: Check submodule merged to base branch
|
2023-10-10 12:35:07 +02:00
|
|
|
if: ${{ steps.get_pro_commits.outputs.base_commit != '' }}
|
2023-06-20 13:54:25 +02:00
|
|
|
uses: actions/github-script@v4
|
|
|
|
with:
|
|
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
script: |
|
|
|
|
const submoduleCommit = '${{ steps.get_pro_commits.outputs.pro_commit }}';
|
2023-06-20 15:07:52 +02:00
|
|
|
const baseCommit = '${{ steps.get_pro_commits.outputs.base_commit }}';
|
2023-06-20 13:54:25 +02:00
|
|
|
|
2023-06-20 15:07:52 +02:00
|
|
|
if (submoduleCommit !== baseCommit) {
|
2023-10-10 12:58:30 +02:00
|
|
|
console.error('Submodule commit does not match the latest commit on the "${{ steps.get_pro_commits.outputs.target_branch }}" branch.');
|
2023-06-20 13:54:25 +02:00
|
|
|
console.error('Refer to the pro repo to merge your changes: https://github.com/Budibase/budibase-pro/blob/develop/docs/getting_started.md')
|
|
|
|
process.exit(1);
|
|
|
|
} else {
|
|
|
|
console.log('All good, the submodule had been merged and setup correctly!')
|
2023-09-26 18:06:52 +02:00
|
|
|
}
|