Make Linux releases #61
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
name: Make Linux releases | |
on: | |
workflow_dispatch: | |
inputs: | |
sbt_ver: | |
description: the version of sbt to release | |
required: true | |
default: 1.4.x | |
dist_patchver: | |
description: patch version if needed | |
required: true | |
default: 0 | |
jobs: | |
linux-release: | |
strategy: | |
matrix: | |
include: | |
- os: ubuntu-latest | |
java: 8 | |
distribution: temurin | |
runs-on: ${{ matrix.os }} | |
env: | |
JAVA_OPTS: -Xms2048M -Xmx2048M -Xss6M -XX:ReservedCodeCacheSize=256M | |
SBT_VER: ${{ github.event.inputs.sbt_ver }} | |
DIST_PATCHVER: ${{ github.event.inputs.dist_patchver }} | |
steps: | |
- name: Checkout sbt/sbt-dist | |
uses: actions/checkout@v2 | |
- name: Checkout sbt/sbt | |
uses: actions/checkout@v2 | |
with: | |
repository: sbt/sbt | |
ref: v${{ github.event.inputs.sbt_ver }} | |
path: sbt | |
- name: Setup JDK | |
uses: actions/setup-java@v2 | |
with: | |
distribution: "${{ matrix.distribution }}" | |
java-version: "${{ matrix.java }}" | |
- name: Coursier cache | |
uses: coursier/cache-action@v6 | |
- name: Cache sbt | |
uses: actions/[email protected] | |
with: | |
path: ~/.sbt | |
key: ${{ runner.os }}-sbt-cache-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} | |
- name: Build | |
shell: bash | |
run: | | |
mode=linuxrelease bin/run-ci.sh | |
env: | |
BINTRAY_USER: ${{ secrets.BINTRAY_USER }} | |
BINTRAY_PASS: ${{ secrets.BINTRAY_PASS }} | |
- name: Cleanup | |
shell: bash | |
run: | | |
rm -rf "$HOME/.ivy2/local" || true | |
find $HOME/Library/Caches/Coursier/v1 -name "ivydata-*.properties" -delete || true | |
find $HOME/.ivy2/cache -name "ivydata-*.properties" -delete || true | |
find $HOME/.cache/coursier/v1 -name "ivydata-*.properties" -delete || true | |
find $HOME/.sbt -name "*.lock" -delete || true |