Skip to content

Fixed the issue that the generated vrt.xml is empty when writing out cog #456

Fixed the issue that the generated vrt.xml is empty when writing out cog

Fixed the issue that the generated vrt.xml is empty when writing out cog #456

Workflow file for this run

name: CI
on:
pull_request:
branches: ['**']
push:
branches: ['master']
tags: [v*]
jobs:
build:
name: Build and Test
strategy:
matrix:
scala: ["2.12.19", "2.13.14"]
java: ["11", "21"]
runs-on: ubuntu-latest
env:
SCALA_VERSION: ${{ matrix.scala }}
JAVA_VERSION: ${{ matrix.java }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: coursier/cache-action@v6
- name: unzip rasters
run: cd raster/data; unzip geotiff-test-files.zip
- name: run tests
run: |
docker compose -f .github/docker-compose.yml up "test-jdk${JAVA_VERSION}" --abort-on-container-exit --exit-code-from "test-jdk${JAVA_VERSION}"
publish:
name: Publish Artifacts
needs: [build]
if: github.event_name != 'pull_request' && (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/v'))
strategy:
matrix:
os: [ubuntu-latest]
java: [11]
distribution: [temurin]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: coursier/cache-action@v6
- uses: actions/setup-java@v4
with:
distribution: ${{ matrix.distribution }}
java-version: ${{ matrix.java }}
- name: Release
run: sbt ci-release
env:
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
PGP_SECRET: ${{ secrets.PGP_SECRET }}
SONATYPE_PASSWORD: ${{ secrets.SO_PW }}
SONATYPE_USERNAME: ${{ secrets.SO_UN }}
if: ${{ env.SONATYPE_PASSWORD != '' && env.SONATYPE_USERNAME != '' }}