perf: make osi alpine based and moved setup scripts into dockerfile #1631
Workflow file for this run
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: Build SVIP | |
on: | |
push: | |
# Exclude prod/dev branches since they are built and tested | |
branches-ignore: | |
- 'dev' # todo: replace with vars | |
- 'main' # todo: replace with vars | |
paths-ignore: | |
- '**/resources/**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/[email protected] | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v2 | |
- name: Build SVIP | |
run: ./gradlew clean build -x test |