Skip to content

Commit

Permalink
hotfix: set 'with_oceanbase_container' for every job explicitly
Browse files Browse the repository at this point in the history
  • Loading branch information
whhe committed May 11, 2024
1 parent 126bac1 commit 4b60b87
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,22 +18,27 @@ jobs:
module:
- name: 'go-sql-driver'
language: 'golang'
with_oceanbase_container: true
- name: 'mysql-connector-java'
language: 'java'
with_oceanbase_container: true
- name: 'oceanbase-client'
language: 'java'
with_oceanbase_container: true
- name: 'testcontainers-java'
language: 'java'
with_oceanbase_container: false
- name: 'pymysql'
language: 'python'
with_oceanbase_container: true
- name: 'mysql-connector-python'
language: 'python'
with_oceanbase_container: true
- name: 'mybatisplus-java'
language: 'java'
with_oceanbase_container: false
uses: ./.github/workflows/basic-ci.yml
with:
module: ${{ matrix.module.name }}
language: ${{ matrix.module.language }}
with_oceanbase_container: ${{ matrix.module.with_oceanbase_container || true }}
with_oceanbase_container: ${{ matrix.module.with_oceanbase_container }}

0 comments on commit 4b60b87

Please sign in to comment.