Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ env:
jobs:
quick-build:
if: github.event_name == 'pull_request' && !contains(github.event.pull_request.labels.*.name, 'CI build')
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
container: centos:7
steps:
- name: Install environment
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
mvn compiler:compile -Pdev,jdk17 -B -U -e
check-format:
if: github.event_name == 'pull_request'
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
container: centos:7
steps:
- name: Install environment
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
run: |
mvn spotless:check -Pdev,jdk17 -B -U -e
prepare:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
outputs:
stagingRepositoryId: ${{ steps.staging.outputs.stagingRepositoryId }}
steps:
Expand All @@ -93,7 +93,7 @@ jobs:
echo "::set-output name=stagingRepositoryId::$STAGING_REPOSITORY_ID"
linux-x86_64:
if: github.event_name == 'push' || contains(github.event.pull_request.labels.*.name, 'CI build')
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
container: centos:7
needs: prepare
strategy:
Expand Down