Oceanbase ce optimize #31
Workflow file for this run
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
name: test oceanbase-ce | |
on: | |
push: | |
paths: | |
- '.github/workflows/test-oceanbase-ce.yml' | |
- 'oceanbase-ce/**' | |
pull_request: | |
paths: | |
- '.github/workflows/test-oceanbase-ce.yml' | |
- 'oceanbase-ce/**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Build observer image | |
uses: docker/build-push-action@v2 | |
with: | |
context: ./oceanbase-ce | |
platforms: linux/amd64 | |
file: ./oceanbase-ce/Dockerfile | |
push: false | |
load: true | |
tags: oceanbase-ce | |
build-args: | | |
VERSION=${{ vars.TEST_OCEANBASE_VERSION }} | |
- name: Export Docker image | |
run: docker save -o oceanbase-ce.tar oceanbase-ce | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: oceanbase-ce | |
path: oceanbase-ce.tar | |
test-slim: | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- name: Download artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: oceanbase-ce | |
path: /tmp | |
- name: Load Docker image | |
run: docker load -i /tmp/oceanbase-ce.tar | |
- name: Start Docker container | |
uses: oceanbase/setup-oceanbase-ce@v1 | |
with: | |
image_name: oceanbase-ce | |
container_name: ob-slim | |
fastboot: false | |
- name: Test Docker container | |
run: | | |
docker exec ob-slim obclient -h127.0.0.1 -P2881 -uroot -e 'select version()' | |
docker exec ob-slim obclient -h127.0.0.1 -P2881 -uroot@test -e 'show databases' |