Skip to content

Bump org.apache.maven.plugins:maven-shade-plugin from 3.5.3 to 3.6.0 #2002

Bump org.apache.maven.plugins:maven-shade-plugin from 3.5.3 to 3.6.0

Bump org.apache.maven.plugins:maven-shade-plugin from 3.5.3 to 3.6.0 #2002

name: Single-Threaded Database Integration Tests
on:
workflow_dispatch:
push:
pull_request:
branches:
- main
schedule:
- cron: '20 20 * * *'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions: read-all
jobs:
build:
name: Build, run single-threaded database integration tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
java: [8, 17]
steps:
# SETUP BUILD ENVIRONMENT
- id: maximize-build-space
name: Maximize build space
uses: easimon/maximize-build-space@master
with:
root-reserve-mb: '8192'
remove-dotnet: 'true'
remove-android: 'true'
remove-haskell: 'true'
remove-codeql: 'true'
remove-docker-images: 'true'
- id: prepare-maven-build
name: Prepare Maven build
uses: sualeh/[email protected]
with:
java-version: ${{ matrix.java }}
- id: install-graphviz
name: Install Graphviz
uses: sualeh/[email protected]
# BUILD AND TEST
- id: build-test
name: Build and run database integration tests
env:
TZ: GMT
SC_SINGLE_THREADED: true
shell: bash
run: |
# Build
mvn \
--no-transfer-progress \
--batch-mode \
clean package