Skip to content

Commit

Permalink
Remove unnecessary stages from workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
pathob committed Apr 1, 2021
1 parent 284a3aa commit 23c6dc7
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 30 deletions.
15 changes: 0 additions & 15 deletions .github/workflows/ci_main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -74,7 +60,6 @@ jobs:
- name: Run Unit Tests and analyze on SonarCloud
run: ./mvnw test sonar:sonar -B


integration-tests:
needs: package

Expand Down
15 changes: 0 additions & 15 deletions .github/workflows/ci_pull_request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -74,7 +60,6 @@ jobs:
- name: Run Unit Tests and analyze on SonarCloud
run: ./mvnw test sonar:sonar -B


integration-tests:
needs: package

Expand Down

0 comments on commit 23c6dc7

Please sign in to comment.