Set version to 0.63.0 #86
Workflow file for this run
This file contains hidden or 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
name: Java CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 8 | |
distribution: temurin | |
- uses: actions/cache@v4 | |
with: | |
path: ~/.m2 | |
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-m2- | |
- uses: erlef/setup-beam@v1 | |
with: | |
otp-version: '25' | |
# Since erlef/setup-beam installs OTP in a unique directory we need | |
# to create a symlink so that erlide can find the installation. | |
# The environment variable INSTALL_DIR_FOR_OTP is set by erlef/setup-beam | |
# and erlide will only search for a runtime in commonly used directories. | |
- name: Create OTP symlink | |
run: sudo -E ln -s $INSTALL_DIR_FOR_OTP /usr/local/lib/erlang | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '2.7' | |
- name: Build with Maven | |
run: xvfb-run ./mvnw -B -U clean verify -P help --fail-at-end | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: P2 site | |
path: releng/org.erlide.site/target/repository |