From 23c6dc7b183071dfe6f0a6f34b314dbbcd56051d Mon Sep 17 00:00:00 2001 From: Patrick Hobusch Date: Thu, 1 Apr 2021 23:25:20 +0800 Subject: [PATCH] Remove unnecessary stages from workflows --- .github/workflows/ci_main.yaml | 15 --------------- .github/workflows/ci_pull_request.yaml | 15 --------------- 2 files changed, 30 deletions(-) diff --git a/.github/workflows/ci_main.yaml b/.github/workflows/ci_main.yaml index f0f1502..97779ae 100644 --- a/.github/workflows/ci_main.yaml +++ b/.github/workflows/ci_main.yaml @@ -32,20 +32,6 @@ jobs: - name: Build with Maven run: ./mvnw package -DskipUnitTests -B - - name: Stage - run: | - set +x - mkdir -p /tmp/artifacts - cd target - cp *.jar /tmp/artifacts - cp *.obr /tmp/artifacts - - - name: Upload Package - uses: actions/upload-artifact@v2 - with: - name: Package - path: /tmp/artifacts - unit-tests: needs: package @@ -74,7 +60,6 @@ jobs: - name: Run Unit Tests and analyze on SonarCloud run: ./mvnw test sonar:sonar -B - integration-tests: needs: package diff --git a/.github/workflows/ci_pull_request.yaml b/.github/workflows/ci_pull_request.yaml index 5277b70..b69ddbd 100644 --- a/.github/workflows/ci_pull_request.yaml +++ b/.github/workflows/ci_pull_request.yaml @@ -32,20 +32,6 @@ jobs: - name: Build with Maven run: ./mvnw package -DskipUnitTests -B - - name: Stage - run: | - set +x - mkdir -p /tmp/artifacts - cd target - cp *.jar /tmp/artifacts - cp *.obr /tmp/artifacts - - - name: Upload Package - uses: actions/upload-artifact@v2 - with: - name: Package - path: /tmp/artifacts - unit-tests: needs: package @@ -74,7 +60,6 @@ jobs: - name: Run Unit Tests and analyze on SonarCloud run: ./mvnw test sonar:sonar -B - integration-tests: needs: package