Update version to 0.3.0 (#22) #58
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 | |
on: | |
push: | |
branches: ['trunk'] | |
pull_request: | |
branches: ['trunk'] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
java: | |
- version: 11 | |
distribution: microsoft # OpenJDK build by Microsoft | |
- version: 17 | |
distribution: microsoft # OpenJDK build by Microsoft | |
- version: 21 | |
distribution: microsoft # OpenJDK build by Microsoft | |
# setup-java supports Oracle JDS 17 and later | |
# - version: 11 | |
# distribution: oracle | |
- version: 17 | |
distribution: oracle | |
- version: 21 | |
distribution: oracle | |
- version: 22 | |
distribution: oracle | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK ${{ matrix.java.version }} (${{ matrix.java.distribution }}) | |
uses: actions/setup-java@v4 | |
with: | |
java-version: ${{ matrix.java.version }} | |
distribution: ${{ matrix.java.distribution }} | |
- name: Display Java version | |
run: java -version | |
- name: Display Javac version | |
run: javac -version | |
- name: Display Maven version | |
run: mvn -version | |
- name: Build | |
run: mvn install -DskipTests=true -Dgpg.skip -B -V | |
- name: Install Spice (https://install.spiceai.org) | |
run: | | |
curl https://install.spiceai.org | /bin/bash | |
echo "$HOME/.spice/bin" >> $GITHUB_PATH | |
- name: Init and start spice app | |
run: | | |
spice init spice_qs | |
cd spice_qs | |
spice add spiceai/quickstart | |
spice run &> spice.log & | |
# time to initialize added dataset | |
sleep 10 | |
- name: Test | |
run: mvn test -B | |
env: | |
API_KEY: ${{ secrets.SPICE_CLOUD_API_KEY }} | |