1
0
Fork 0
mirror of synced 2024-07-06 15:00:49 +12:00
budibase/.github/workflows/budibase_ci.yml

261 lines
8.1 KiB
YAML
Raw Normal View History

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