Skip to content

Commit

Permalink
fix env vars
Browse files Browse the repository at this point in the history
  • Loading branch information
whhe committed Jun 21, 2024
1 parent 85eaf78 commit bc13a4f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions .github/workflows/java-test-oceanbase-ce.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ jobs:
java-version: '8'
distribution: 'zulu'
cache: 'maven'
cache-dependency-path: 'test/pom.xml'

- name: Test Docker container
env:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test-oceanbase-ce.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ jobs:
build:
uses: ./.github/workflows/build-oceanbase-ce.yml
with:
cache_key: $CACHE_KEY
image_file: $IMAGE_FILE
cache_key: ${{ env.CACHE_KEY }}
image_file: ${{ env.IMAGE_FILE }}

test-slim:
needs: build
uses: ./.github/workflows/java-test-oceanbase-ce.yml
with:
cache_key: $CACHE_KEY
image_file: $IMAGE_FILE
cache_key: ${{ env.CACHE_KEY }}
image_file: ${{ env.IMAGE_FILE }}
mode: slim
port: 1234
sys_password: ''
Expand Down

0 comments on commit bc13a4f

Please sign in to comment.