Skip to content

Commit

Permalink
build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
albertus82 committed Aug 17, 2022
1 parent eb37557 commit 229396f
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
matrix:
java: [ '8', '9', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19-ea', '20-ea' ]
os: [ windows-latest, ubuntu-18.04, macOS-latest ]
os: [ windows-latest, ubuntu-20.04, macOS-latest ]
runs-on: ${{ matrix.os }}
env:
MAVEN_OPTS: -Dhttp.keepAlive=false
Expand All @@ -19,5 +19,10 @@ jobs:
distribution: zulu
java-version: ${{ matrix.java }}
- if: contains(matrix.os, 'ubuntu')
run: sudo dpkg --add-architecture i386 && sudo apt-get update && sudo apt-get install -y wine32
run: |
sudo rm -f /etc/apt/sources.list.d/microsoft-prod.list
sudo apt-get update -qq
sudo apt-get install -yqq --allow-downgrades libgd3/focal libpcre2-8-0/focal libpcre2-16-0/focal libpcre2-32-0/focal libpcre2-posix2/focal
sudo apt-get purge -yqq libmono* moby* mono* php* libgdiplus libpcre2-posix3 libzip4
sudo dpkg --add-architecture i386 && sudo apt-get update && sudo apt-get install -y wine32
- run: ./mvnw clean verify -B -V -e -ntp

0 comments on commit 229396f

Please sign in to comment.