-
-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use temurin distribution in actions/setup-java as recommended by the action docs. Split build.yml jobs into two since native image requires a custom java setup step. Update actions versions
- Loading branch information
Showing
5 changed files
with
92 additions
and
20 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,83 @@ | ||
name: Build | ||
|
||
env: | ||
GRAALCE_JDK_VERSION: "17.0.9" | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
|
||
jobs: | ||
build: | ||
libs: | ||
name: test and build libs | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Set up JDK 8 | ||
uses: actions/setup-java@v2 | ||
|
||
- name: Set up JDK 8 and 17 # we need both because graal plugin in cli-bot requires jdk version >= 11 | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: '8' | ||
distribution: 'adopt' | ||
java-version: | | ||
8 | ||
17 | ||
distribution: 'temurin' | ||
|
||
- name: Gradle Wrapper Validation | ||
uses: gradle/[email protected] | ||
|
||
- name: Grant execute permission for gradlew | ||
run: chmod +x gradlew | ||
|
||
- name: Build with Gradle | ||
run: ./gradlew clean test integrationTest build nativeCompile | ||
run: ./gradlew clean test integrationTest build shadowJar | ||
|
||
cli: | ||
name: build and test native image | ||
runs-on: ubuntu-latest | ||
needs: libs | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
# loosely based on https://github.com/actions/setup-java/blob/main/docs/advanced-usage.md#installing-java-from-local-file | ||
- name: Fetch latest graalce JDK | ||
id: fetch_latest_jdk | ||
run: | | ||
jdk_version=${{ env.GRAALCE_JDK_VERSION }} | ||
cd $RUNNER_TEMP | ||
latest_jdk_download_url="https://github.com/graalvm/graalvm-ce-builds/releases/download/jdk-${jdk_version}/graalvm-community-jdk-${jdk_version}_linux-x64_bin.tar.gz" | ||
echo "$latest_jdk_download_url" | ||
curl -Ls "$latest_jdk_download_url" -o java_package.tar.gz | ||
echo "java_version=$jdk_version" >> "$GITHUB_OUTPUT" | ||
- name: Set up GraalCE JDK | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'jdkfile' | ||
jdkFile: ${{ runner.temp }}/java_package.tar.gz | ||
java-version: ${{ steps.fetch_latest_jdk.outputs.java_version }} | ||
architecture: x64 | ||
|
||
- name: Gradle Wrapper Validation | ||
uses: gradle/[email protected] | ||
|
||
- name: Grant execute permission for gradlew | ||
run: chmod +x gradlew | ||
|
||
- name: Compile native image | ||
run: ./gradlew nativeCompile | ||
- name: Test native image | ||
run: | | ||
# run several iterations to test various pathways when generating data | ||
for i in {0..10}; do | ||
./cli-bot/build/native/nativeCompile/faker-bot list --verbose >/dev/null || false | ||
./cli-bot/build/native/nativeCompile/faker-bot lookup a --verbose >/dev/null || false | ||
./cli-bot/build/native/nativeCompile/faker-bot list --verbose >/dev/null || false | ||
./cli-bot/build/native/nativeCompile/faker-bot lookup a --verbose >/dev/null || false | ||
done | ||
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
name: Publish Snapshot | ||
|
||
env: | ||
GRAALCE_JDK_VERSION: 17.0.9 | ||
|
||
on: | ||
push: | ||
branches: | ||
|
@@ -19,6 +22,7 @@ jobs: | |
core: | ||
- '.github/workflows/**' | ||
- 'core/**' | ||
- 'faker/**' | ||
- '*gradle*' | ||
- 'set-version.sh' | ||
|
@@ -28,14 +32,33 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
# loosely based on https://github.com/actions/setup-java/blob/main/docs/advanced-usage.md#installing-java-from-local-file | ||
- name: Fetch latest graalce JDK | ||
id: fetch_latest_jdk | ||
run: | | ||
jdk_version=${{ env.GRAALCE_JDK_VERSION }} | ||
cd $RUNNER_TEMP | ||
latest_jdk_download_url="https://github.com/graalvm/graalvm-ce-builds/releases/download/jdk-${jdk_version}/graalvm-community-jdk-${jdk_version}_linux-x64_bin.tar.gz" | ||
echo "$latest_jdk_download_url" | ||
curl -Ls "$latest_jdk_download_url" -o java_package.tar.gz | ||
echo "java_version=$jdk_version" >> "$GITHUB_OUTPUT" | ||
- name: Set up GraalCE JDK | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'jdkfile' | ||
jdkFile: ${{ runner.temp }}/java_package.tar.gz | ||
java-version: ${{ steps.fetch_latest_jdk.outputs.java_version }} | ||
architecture: x64 | ||
- name: Set up JDK 8 | ||
uses: actions/setup-java@v2 | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: '8' | ||
distribution: 'adopt' | ||
java-version: | | ||
8 | ||
17 | ||
distribution: 'temurin' | ||
- name: Gradle Wrapper Validation | ||
uses: gradle/[email protected] | ||
- name: Grant execute permission to scripts | ||
|
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
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