Skip to content

[Backport 31.x] [GEOT-7568] ExternalGraphic isn't drawn when defined in LegendGraphic #4341

[Backport 31.x] [GEOT-7568] ExternalGraphic isn't drawn when defined in LegendGraphic

[Backport 31.x] [GEOT-7568] ExternalGraphic isn't drawn when defined in LegendGraphic #4341

Workflow file for this run

name: Mac OS CI
on: [pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: [macos-latest]
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
java-version: 11
distribution: 'temurin'
- name: Maven repository caching
uses: actions/cache@v1
with:
path: ~/.m2/repository
key: gt-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
gt-maven-
- name: Disable network offloading
# See: https://github.com/actions/virtual-environments/issues/1187#issuecomment-686735760
run: |
sudo sysctl -w net.link.generic.system.hwcksum_tx=0
sudo sysctl -w net.link.generic.system.hwcksum_rx=0
- name: Build with Maven
run: mvn -B clean install -T2 -Dall --file pom.xml -Dspotless.apply.skip=true
- name: Remove SNAPSHOT jars from repository
run: |
find ~/.m2/repository -name "*SNAPSHOT*" -type d | xargs rm -rf {}