mirror of
https://github.com/gitbucket/gitbucket.git
synced 2025-12-29 11:49:59 +01:00
Bumps [actions/cache](https://github.com/actions/cache) from 2.1.6 to 2.1.7. - [Release notes](https://github.com/actions/cache/releases) - [Commits](https://github.com/actions/cache/compare/v2.1.6...v2.1.7) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
40 lines
1007 B
YAML
40 lines
1007 B
YAML
name: build
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 30
|
|
strategy:
|
|
matrix:
|
|
java: [8, 11, 17]
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Cache
|
|
uses: actions/cache@v2.1.7
|
|
env:
|
|
cache-name: cache-sbt-libs
|
|
with:
|
|
path: |
|
|
~/.ivy2/cache
|
|
~/.sbt
|
|
~/.cache/coursier/v1
|
|
key: build-${{ env.cache-name }}-${{ hashFiles('build.sbt') }}
|
|
- name: Set up JDK
|
|
uses: actions/setup-java@v2
|
|
with:
|
|
java-version: ${{ matrix.java }}
|
|
distribution: adopt
|
|
- name: Run tests
|
|
run: sbt scalafmtSbtCheck scalafmtCheck test:scalafmtCheck test
|
|
- name: Scala 3
|
|
run: sbt '++ 3.0.1!' update # TODO
|
|
- name: Build executable
|
|
run: sbt executable
|
|
- name: Upload artifacts
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: gitbucket-java${{ matrix.java }}-${{ github.sha }}
|
|
path: ./target/executable/gitbucket.*
|