Skip to content

Commit

Permalink
Removed previous tests to rull-out test interference.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jardo-51 committed May 6, 2024
1 parent a8dd90b commit 5268b39
Showing 1 changed file with 0 additions and 52 deletions.
52 changes: 0 additions & 52 deletions .github/workflows/test-current-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,58 +41,6 @@ jobs:
restore-keys: |
${{ runner.os }}-maven-
- name: Run action (non-branch version - should change automatically)
id: run-action-non-branch-version
uses: maven-flow/manage-versions@main
env:
USER: ${{ secrets.USER }}
TOKEN: ${{ secrets.DEPLOY_GITHUB_TOKEN }}
with:
enforce-branch-version: true
maven-args: "-P github -s ${GITHUB_WORKSPACE}/.github/workflows/maven-settings.xml"
pom-file: "non-branch-version-pom.xml"

- name: Assert version changed
run: .github/workflows/assert-project-version.sh non-branch-version-pom.xml 1.1.0-rc.0-bugfix-BUG-458-SNAPSHOT

- name: Assert output parameters
run: |
if [[ "${{ steps.run-action-non-branch-version.outputs.changes-made }}" = "true" ]]; then
echo "Output changes-made has correct value."
else
echo "ERROR: Output changes-made has incorrect value."
exit 1
fi
- name: Run action (branch version)
id: run-action-branch-version
uses: maven-flow/manage-versions@main
env:
USER: ${{ secrets.USER }}
TOKEN: ${{ secrets.DEPLOY_GITHUB_TOKEN }}
with:
enforce-branch-version: true
maven-args: "-P github -s ${GITHUB_WORKSPACE}/.github/workflows/maven-settings.xml"
pom-file: "branch-version-pom.xml"

- name: Assert version unchanged
run: .github/workflows/assert-project-version.sh branch-version-pom.xml 1.1.0-rc.0-BUG-458-SNAPSHOT

- name: Assert dependency version unchanged
run: .github/workflows/assert-dependency-version.sh branch-version-pom.xml com.jardoapps.maven-flow dummy-dependency 1.1.0-rc.0-BUG-458-SNAPSHOT

- name: Assert output parameters
run: |
if [[ "${{ steps.run-action-branch-version.outputs.changes-made }}" = "false" ]]; then
echo "Output changes-made has correct value."
else
echo "ERROR: Output changes-made has incorrect value."
exit 1
fi
- name: Revert changes
run: git restore .

- name: Run action (non-branch version, do not enforce)
id: run-action-non-branch-version-do-not-enforce
uses: maven-flow/manage-versions@main
Expand Down

0 comments on commit 5268b39

Please sign in to comment.