Skip to content

io_uring integration via new transport API #1925

io_uring integration via new transport API

io_uring integration via new transport API #1925

Workflow file for this run

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
experimental: false
- os: ubuntu-latest
jdk: 11
profile: '-PNativeEpoll'
experimental: false
- os: ubuntu-latest
jdk: 11
profile: '-PNativeIoUring'
experimental: false
- os: ubuntu-latest
jdk: 11
profile: '-PNativeEpoll+DomainSockets'
experimental: false
- os: ubuntu-latest
jdk: 21
experimental: false
- os: windows-latest
jdk: 11
experimental: false
- os: macos-latest
jdk: 11
profile: '-PNativeKQueue'
experimental: true
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 }}
experimental: ${{ matrix.experimental }}
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