Summary
Jobs
common
spotless
gradle-wrapper-validation
license-check
extra-dependency-management-enforcement
build
test0 (8, hotspot)
test1 (8, hotspot)
test2 (8, hotspot)
test3 (8, hotspot)
test0 (8, openj9)
test1 (8, openj9)
test2 (8, openj9)
test3 (8, openj9)
test0 (11, hotspot)
test1 (11, hotspot)
test2 (11, hotspot)
test3 (11, hotspot)
test0 (11, openj9)
test1 (11, openj9)
test2 (11, openj9)
test3 (11, openj9)
test0 (17, hotspot)
test1 (17, hotspot)
test2 (17, hotspot)
test3 (17, hotspot)
test0 (17, openj9)
test1 (17, openj9)
test2 (17, openj9)
test3 (17, openj9)
test0 (21, hotspot)
test1 (21, hotspot)
test2 (21, hotspot)
test3 (21, hotspot)
test0 (21, openj9)
test1 (21, openj9)
test2 (21, openj9)
test3 (21, openj9)
test0 (23, hotspot)
test1 (23, hotspot)
test2 (23, hotspot)
test3 (23, hotspot)
test0 (23, openj9)
test1 (23, openj9)
test2 (23, openj9)
test3 (23, openj9)
smoke-test (windows-latest, jetty)
smoke-test (windows-latest, liberty)
smoke-test (windows-latest, payara)
smoke-test (windows-latest, tomcat)
smoke-test (windows-latest, tomee)
smoke-test (windows-latest, wildfly)
smoke-test (windows-latest, other)
smoke-test (ubuntu-latest, jetty)
smoke-test (ubuntu-latest, liberty)
smoke-test (ubuntu-latest, payara)
smoke-test (ubuntu-latest, tomcat)
smoke-test (ubuntu-latest, tomee)
smoke-test (ubuntu-latest, websphere)
smoke-test (ubuntu-latest, wildfly)
smoke-test (ubuntu-latest, other)
gradle-plugins
examples
test-latest-deps
test-indy
workflow-notification
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: Build (daily --no-build-cache)
on:
schedule:
# daily at 4:48 UTC
- cron: "48 4 * * *"
workflow_dispatch:
jobs:
common:
uses: ./.github/workflows/build-common.yml
with:
max-test-retries: 0
no-build-cache: true
test-latest-deps:
uses: ./.github/workflows/reusable-test-latest-deps.yml
with:
max-test-retries: 0
no-build-cache: true
test-indy:
uses: ./.github/workflows/reusable-test-indy.yml
with:
max-test-retries: 0
no-build-cache: true
# muzzle is not included here because it doesn't use gradle cache anyway and so is already covered
# by the normal daily build
# markdown-link-check and misspell-check are not included here because they don't use gradle cache
# anyway and so are already covered by the normal daily build
workflow-notification:
needs:
- common
- test-latest-deps
if: always()
uses: ./.github/workflows/reusable-workflow-notification.yml
with:
success: >-
${{
needs.common.result == 'success' &&
needs.test-latest-deps.result == 'success'
}}
You can’t perform that action at this time.