From 5173ef792397bf1b51e66bcf85cbf5f6ab88e50d Mon Sep 17 00:00:00 2001 From: Nanne Baars Date: Sat, 27 Mar 2021 12:51:40 +0100 Subject: [PATCH] WIP --- .github/workflows/main.yml | 50 ++++++++++++++++++-------------------- 1 file changed, 24 insertions(+), 26 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ddebfade8..22ec4af86 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -5,36 +5,34 @@ on: branches: [ '*' ] tags-ignore: - '*' - pull_request: - branches: [ develop ] jobs: - build: - runs-on: ${{ matrix.os }} - strategy: - matrix: - os: [ubuntu-latest, windows-latest, macos-latest] - java: [11, 15] - steps: - # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v2 - - name: Set up JDK ${{ matrix.java }} - uses: actions/setup-java@v1 - with: - java-version: ${{ matrix.java }} - architecture: x64 - - name: Cache Maven packages - uses: actions/cache@v2 - with: - path: ~/.m2 - key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} - restore-keys: ${{ runner.os }}-m2 - - name: Build with Maven - run: mvn clean install -DskipTests +# build: +# runs-on: ${{ matrix.os }} +# strategy: +# matrix: +# os: [ubuntu-latest, windows-latest, macos-latest] +# java: [11, 15] +# steps: +# # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it +# - uses: actions/checkout@v2 +# - name: Set up JDK ${{ matrix.java }} +# uses: actions/setup-java@v1 +# with: +# java-version: ${{ matrix.java }} +# architecture: x64 +# - name: Cache Maven packages +# uses: actions/cache@v2 +# with: +# path: ~/.m2 +# key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} +# restore-keys: ${{ runner.os }}-m2 +# - name: Build with Maven +# run: mvn clean install -DskipTests notify-slack: if: github.event_name == 'push' && (success() || failure()) - needs: - - build +# needs: +# - build runs-on: ubuntu-latest steps: - name: "Slack workflow notification"