Partial Fix For Slow jFileChooser #301
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 will build the BCV repo and upload the package as an artifact | |
name: Build BCV | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: [ '8', '11', '17', '21' ] # LTS versions | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK ${{ matrix.java }} | |
uses: actions/setup-java@v4 | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: 'temurin' | |
cache: maven | |
- name: Build with Maven | |
run: mvn -B package --file pom.xml | |
- name: Extract Maven project version | |
run: echo "bcv_version=$(mvn -q -Dexec.executable=echo -Dexec.args='${project.version}' --non-recursive exec:exec)" >> $GITHUB_ENV | |
id: project | |
- name: 'Upload Artifact' | |
uses: actions/upload-artifact@v4 | |
if: ${{ matrix.java == '8' }} | |
with: | |
name: Bytecode-Viewer-${{ env.bcv_version }}-SNAPSHOT | |
path: target/Bytecode-Viewer-${{ env.bcv_version }}.jar | |
retention-days: 90 |