Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
wuchong committed Nov 26, 2024
1 parent 633ffd4 commit 1366066
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci-jdk11.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,24 +14,25 @@
# limitations under the License.
################################################################################

name: Fluss CI on JDK 11
name: Tests on JDK 11

on:
push:
issue_comment:
types: [created, edited, deleted]

# daily run
schedule:
- cron: "0 0 * * *"
# schedule:
# - cron: "0 0 * * *"

env:
JDK_VERSION: 11

jobs:
build:
if: |
github.event_name == 'schedule' ||
(contains(github.event.comment.html_url, '/pull/') && contains(github.event.comment.body, '/jdk11'))
# if: |
# github.event_name == 'schedule' ||
# (contains(github.event.comment.html_url, '/pull/') && contains(github.event.comment.body, '/jdk11'))
runs-on: ubuntu-latest

steps:
Expand All @@ -45,7 +46,6 @@ jobs:
- name: Build
run: mvn -T 1C -B clean install -DskipTests
- name: Test
timeout-minutes: 60
run: |
mvn -T 1C -B verify
env:
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# limitations under the License.
################################################################################

name: Fluss CI on JDK 8
name: Tests on JDK 8

on:
push:
Expand Down Expand Up @@ -44,7 +44,6 @@ jobs:
- name: Build
run: mvn -T 1C -B clean install -DskipTests
- name: Test
timeout-minutes: 60
run: |
mvn -T 1C -B verify
env:
Expand Down

0 comments on commit 1366066

Please sign in to comment.