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

Added the branch to checkout action #111

Merged
merged 2 commits into from
Jan 19, 2023
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
22 changes: 18 additions & 4 deletions .github/workflows/pr-build-jdk11.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,20 @@ jobs:
with:
repository: windup/windup
path: windup
- name: Checkout windup repo
ref: ${{ github.base_ref }}
- name: Checkout windup-maven-plugin repo
uses: actions/checkout@v3
with:
repository: windup/windup-maven-plugin
path: windup-maven-plugin
ref: ${{ github.base_ref }}
- name: Checkout windup-rulesets repo
uses: actions/checkout@v3
with:
repository: windup/windup-rulesets
path: windup-rulesets
ref: ${{ github.base_ref }}
- name: Checkout windup-quickstarts repo
uses: actions/checkout@v3
with:
path: windup-quickstarts
Expand All @@ -33,8 +46,9 @@ jobs:
cache: 'maven'
- name: Build Windup on JDK 11
run: mvn -B clean install -DskipTests -f windup
- name: Build Windup Rules on JDK 11
run: mvn -B clean install -DskipTests -f windup-rulesets
- name: Build Windup Maven Plugin on JDK 11
run: mvn -B clean install -DskipTests -f windup-maven-plugin
- name: Build on JDK 11
run: mvn -B clean install -s ./windup-quickstarts/settings.xml -DskipTests -f windup-quickstarts && mvn -B clean install -s ./windup-quickstarts/settings.xml -f windup-quickstarts