Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clean up Jakarta-related workflows #30859

Merged
merged 1 commit into from
Feb 4, 2023
Merged
Show file tree
Hide file tree
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
23 changes: 2 additions & 21 deletions .github/workflows/ci-actions-incremental.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,21 +69,6 @@ jobs:
name: pull-request-number-${{ github.event.number }}
path: pull-request-number
retention-days: 1
attach-report-issue-number:
runs-on: ubuntu-latest
name: Attach report issue number
if: github.ref_name == 'jakarta-rewrite' || github.ref_name == '3.0'
steps:
- name: Create file
shell: bash
run: |
echo -n 25363 > report-issue-number
- name: Upload report issue number
uses: actions/upload-artifact@v3
with:
name: report-issue-number-25363
path: report-issue-number
retention-days: 1
ci-sanity-check:
name: "CI Sanity Check"
runs-on: ubuntu-latest
Expand Down Expand Up @@ -139,10 +124,6 @@ jobs:
path: ~/.m2/repository
# refresh cache every month to avoid unlimited growth
key: q2maven-${{ steps.get-date.outputs.date }}
- name: Prepare Jakarta artifacts
if: github.ref_name == 'jakarta-rewrite' || github.ref_name == '3.0'
shell: bash
run: ./jakarta/prepare.sh
- name: Build
run: |
./mvnw -T1C $COMMON_MAVEN_ARGS -DskipTests -DskipITs -Dinvoker.skip -Dno-format -Dtcks -Prelocations clean install
Expand Down Expand Up @@ -570,8 +551,8 @@ jobs:
name: Quickstarts Compilation - JDK ${{matrix.java.name}}
runs-on: ${{matrix.java.os-name}}
needs: build-jdk11
# Skip the jakarta-rewrite and 3.0 branches and main in forks
if: github.ref_name != 'jakarta-rewrite' && github.ref_name != '3.0' && (github.repository == 'quarkusio/quarkus' || !endsWith(github.ref, '/main'))
# Skip main in forks
if: github.repository == 'quarkusio/quarkus' || !endsWith(github.ref, '/main')
timeout-minutes: 90
strategy:
fail-fast: false
Expand Down