Merge pull request #5422 from eclipse-vertx/deprecations-for-removal #2253
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: vertx-core (5.x) | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
schedule: | |
- cron: '0 5 * * *' | |
jobs: | |
CI: | |
strategy: | |
matrix: | |
include: | |
- os: ubuntu-latest | |
jdk: 11 | |
- os: ubuntu-latest | |
jdk: 11 | |
profile: '-PNativeEpoll' | |
- os: ubuntu-latest | |
jdk: 11 | |
profile: '-PNativeIoUring' | |
- os: ubuntu-latest | |
jdk: 11 | |
profile: '-PNativeEpoll+DomainSockets' | |
- os: ubuntu-latest | |
jdk: 21 | |
- os: windows-latest | |
jdk: 11 | |
stable: true | |
# - os: macos-latest | |
# jdk: 11 | |
# profile: '-PNativeKQueue' | |
uses: ./.github/workflows/ci.yml | |
with: | |
branch: ${{ github.event.pull_request.head.sha || github.ref_name }} | |
jdk: ${{ matrix.jdk }} | |
os: ${{ matrix.os }} | |
profile: ${{ matrix.profile }} | |
secrets: inherit | |
Deploy: | |
if: ${{ github.repository_owner == 'eclipse-vertx' && (github.event_name == 'push' || github.event_name == 'schedule') }} | |
needs: CI | |
uses: ./.github/workflows/deploy.yml | |
with: | |
branch: ${{ github.event.pull_request.head.sha || github.ref_name }} | |
jdk: 11 | |
secrets: inherit |