-
-
Notifications
You must be signed in to change notification settings - Fork 765
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* refactor: reference cal engine * feat: support many-many lookup filter * fix: reference query * feat: lookup filter ui * fix: filter not work when modify one many link cell * chore: dev shutdown process * fix: filter not clean when remove last visible item * feat: add trace exporter config * ci: allowd deploy and preview pr
- Loading branch information
1 parent
abcf35f
commit ca76960
Showing
50 changed files
with
2,874 additions
and
2,446 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,147 @@ | ||
name: Preview PR | ||
|
||
permissions: | ||
contents: read | ||
pull-requests: write | ||
|
||
on: | ||
pull_request: | ||
types: | ||
- opened | ||
- synchronize | ||
- reopened | ||
- labeled | ||
- unlabeled | ||
|
||
jobs: | ||
check-pr: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
should_deploy: ${{ steps.check.outputs.should_deploy }} | ||
steps: | ||
- name: Check PR labels | ||
id: check | ||
uses: actions/github-script@v6 | ||
with: | ||
script: | | ||
const hasPreviewLabel = context.payload.pull_request.labels.some( | ||
label => label.name === 'preview' | ||
); | ||
console.log('Has preview label:', hasPreviewLabel); | ||
core.setOutput('should_deploy', hasPreviewLabel.toString()); | ||
return hasPreviewLabel; | ||
build-push: | ||
needs: check-pr | ||
if: needs.check-pr.outputs.should_deploy == 'true' | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
include: | ||
- image: teable | ||
file: Dockerfile | ||
- image: teable-db-migrate | ||
file: Dockerfile.db-migrate | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Login to Ali container registry | ||
uses: docker/login-action@v3 | ||
with: | ||
registry: registry.cn-shenzhen.aliyuncs.com | ||
username: ${{ secrets.ALI_DOCKER_USERNAME }} | ||
password: ${{ secrets.ALI_DOCKER_PASSWORD }} | ||
|
||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20.9.0 | ||
- name: ⚙️ Install zx | ||
run: npm install -g zx | ||
|
||
- name: ⚙️ Docker meta | ||
id: meta | ||
uses: docker/metadata-action@v5 | ||
with: | ||
images: | | ||
registry.cn-shenzhen.aliyuncs.com/teable/${{ matrix.image }} | ||
tags: | | ||
type=raw,value=alpha-pr-${{ github.event.pull_request.number }} | ||
type=raw,value=${{ github.sha }} | ||
- name: ⚙️ Set up QEMU | ||
uses: docker/setup-qemu-action@v3 | ||
|
||
- name: 📦 Build and push | ||
run: | | ||
zx scripts/build-image.mjs --file=dockers/teable/${{ matrix.file }} \ | ||
--build-arg="ENABLE_CSP=false" \ | ||
--tag="${{ steps.meta.outputs.tags }}" \ | ||
--platform="linux/amd64" \ | ||
--push | ||
deploy: | ||
needs: [check-pr, build-push] | ||
if: needs.check-pr.outputs.should_deploy == 'true' | ||
runs-on: ubuntu-latest | ||
env: | ||
INSTANCE_NAME: pr-${{ github.event.pull_request.number }} | ||
INSTANCE_DOMAIN: pr-${{ github.event.pull_request.number }} | ||
DISPLAY_NAME: "teable-pr-${{ github.event.pull_request.number }}" | ||
MAIN_IMAGE_REPOSITORY: registry.cn-shenzhen.aliyuncs.com/teable/teable | ||
DB_MIGRATE_IMAGE_REPOSITORY: registry.cn-shenzhen.aliyuncs.com/teable/teable-db-migrate | ||
IMAGE_TAG: ${{ github.sha }}-amd64 | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Create deployment YAML | ||
run: | | ||
cp .github/workflows/templates/preview-template.yaml deploy.yaml | ||
sed -i "s#__INSTANCE_NAME__#${{ env.INSTANCE_NAME }}#g" deploy.yaml | ||
sed -i "s#__INSTANCE_DOMAIN__#${{ env.INSTANCE_DOMAIN }}#g" deploy.yaml | ||
sed -i "s#__MAIN_IMAGE_REPOSITORY__#${{ env.MAIN_IMAGE_REPOSITORY }}#g" deploy.yaml | ||
sed -i "s#__DB_MIGRATE_IMAGE_REPOSITORY__#${{ env.DB_MIGRATE_IMAGE_REPOSITORY }}#g" deploy.yaml | ||
sed -i "s#__IMAGE_TAG__#${{ env.IMAGE_TAG }}#g" deploy.yaml | ||
sed -i "s#__DISPLAY_NAME__#${{ env.DISPLAY_NAME }}#g" deploy.yaml | ||
- name: Apply deploy job | ||
uses: actions-hub/kubectl@master | ||
env: | ||
KUBE_CONFIG: ${{ secrets.KUBE_CONFIG }} | ||
with: | ||
args: apply -f deploy.yaml | ||
|
||
- name: Rollout status | ||
uses: actions-hub/kubectl@master | ||
env: | ||
KUBE_CONFIG: ${{ secrets.KUBE_CONFIG }} | ||
with: | ||
args: rollout status deployment/teable-${{ env.INSTANCE_NAME }} --timeout=300s | ||
|
||
- name: Wait for application health check | ||
uses: actions-hub/kubectl@master | ||
env: | ||
KUBE_CONFIG: ${{ secrets.KUBE_CONFIG }} | ||
with: | ||
args: exec deployment/teable-${{ env.INSTANCE_NAME }} -- curl -f --retry 30 --retry-delay 5 --retry-connrefused http://localhost:3000/health | ||
|
||
- name: Create deployment status comment | ||
if: always() | ||
env: | ||
JOB_STATUS: ${{ job.status }} | ||
uses: actions/github-script@v6 | ||
with: | ||
script: | | ||
const success = process.env.JOB_STATUS === 'success'; | ||
const deploymentUrl = `https://${process.env.INSTANCE_DOMAIN}.sealosgzg.site`; | ||
const status = success ? '✅ Success' : '❌ Failed'; | ||
console.log(process.env.JOB_STATUS); | ||
const commentBody = `**Deployment Status: ${status}** | ||
${success ? `🔗 Preview URL: ${deploymentUrl}` : ''}`; | ||
await github.rest.issues.createComment({ | ||
...context.repo, | ||
issue_number: context.payload.pull_request.number, | ||
body: commentBody | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
name: Cleanup Preview Environment | ||
|
||
on: | ||
pull_request: | ||
types: [closed] | ||
|
||
env: | ||
INSTANCE_NAME: pr-${{ github.event.pull_request.number }} | ||
INSTANCE_DOMAIN: pr-${{ github.event.pull_request.number }} | ||
DISPLAY_NAME: "teable-pr-${{ github.event.pull_request.number }}" | ||
MAIN_IMAGE_REPOSITORY: registry.cn-shenzhen.aliyuncs.com/teable/teable | ||
DB_MIGRATE_IMAGE_REPOSITORY: registry.cn-shenzhen.aliyuncs.com/teable/teable-db-migrate | ||
IMAGE_TAG: ${{ github.sha }}-amd64 | ||
|
||
jobs: | ||
cleanup: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Create deployment YAML | ||
run: | | ||
cp .github/workflows/templates/preview-template.yaml deploy.yaml | ||
sed -i "s#__INSTANCE_NAME__#${{ env.INSTANCE_NAME }}#g" deploy.yaml | ||
sed -i "s#__INSTANCE_DOMAIN__#${{ env.INSTANCE_DOMAIN }}#g" deploy.yaml | ||
sed -i "s#__MAIN_IMAGE_REPOSITORY__#${{ env.MAIN_IMAGE_REPOSITORY }}#g" deploy.yaml | ||
sed -i "s#__DB_MIGRATE_IMAGE_REPOSITORY__#${{ env.DB_MIGRATE_IMAGE_REPOSITORY }}#g" deploy.yaml | ||
sed -i "s#__IMAGE_TAG__#${{ env.IMAGE_TAG }}#g" deploy.yaml | ||
sed -i "s#__DISPLAY_NAME__#${{ env.DISPLAY_NAME }}#g" deploy.yaml | ||
- name: Delete deployment | ||
uses: actions-hub/kubectl@master | ||
env: | ||
KUBE_CONFIG: ${{ secrets.KUBE_CONFIG }} | ||
with: | ||
args: delete -f deploy.yaml --ignore-not-found=true | ||
|
||
- name: Create cleanup status comment | ||
uses: actions/github-script@v6 | ||
with: | ||
script: | | ||
const prNumber = context.payload.pull_request.number; | ||
const mergeStatus = context.payload.pull_request.merged ? 'Merged' : 'Closed'; | ||
const commentBody = `## 🧹 Preview Environment Cleanup | ||
* PR #${prNumber} has been ${mergeStatus} | ||
* Preview environment has been deleted | ||
* Cleanup time: ${new Date().toISOString()}`; | ||
await github.rest.issues.createComment({ | ||
...context.repo, | ||
issue_number: prNumber, | ||
body: commentBody | ||
}); |
Oops, something went wrong.