From edea95f408739114c71a729c05547cb59f266344 Mon Sep 17 00:00:00 2001 From: aboyko Date: Fri, 7 Jul 2023 12:50:54 -0400 Subject: [PATCH] Remove buildQualifier setting from the command --- .github/workflows/debug-test-flow.yml | 15 --------------- .github/workflows/eclipse-distro-build.yml | 5 +---- 2 files changed, 1 insertion(+), 19 deletions(-) delete mode 100644 .github/workflows/debug-test-flow.yml diff --git a/.github/workflows/debug-test-flow.yml b/.github/workflows/debug-test-flow.yml deleted file mode 100644 index e25e8f59c..000000000 --- a/.github/workflows/debug-test-flow.yml +++ /dev/null @@ -1,15 +0,0 @@ -name: Debug Timestamp -on: - workflow_dispatch: -jobs: - - eclipse-distro-build: - runs-on: ubuntu-latest - steps: - - name: Timestamp - id: timestamp - run: echo "name=date::$(date +'%Y%m%dT%H%M%S')" >> $GITHUB_OUTPUT - - name: Print timestamp - run: | - echo $(date +'%Y%m%dT%H%M%S') - echo ${{ steps.timestamp.outputs.date }} diff --git a/.github/workflows/eclipse-distro-build.yml b/.github/workflows/eclipse-distro-build.yml index 5212887c1..5f81395fa 100644 --- a/.github/workflows/eclipse-distro-build.yml +++ b/.github/workflows/eclipse-distro-build.yml @@ -27,9 +27,6 @@ jobs: distribution: 'temurin' - name: Enforce https instead of http run: ./nohttp.sh - - name: Timestamp - id: timestamp - run: echo "name=date::$(date +'%Y%m%dT%H%M%S')" >> $GITHUB_OUTPUT - name: Install GPG key run: | echo "${{ secrets.GPG_PRIVATE_KEY }}" > gpg.asc @@ -52,4 +49,4 @@ jobs: MACOS_NOTARIZATION_SERVICE_URL: http://localhost:8080 run: | cd eclipse-distribution - ./mvnw --batch-mode -U clean deploy -P${{ inputs.eclipse_profile }} -P${{ inputs.build_type }} -Pgitactions -Pgpg.sign -DbuildQualifier=${{ steps.timestamp.outputs.date }} -Dsigning.skip=true -Dmaven.repo.local=~/.m2/repository-signed -Dhttpclient.retry-max=20 -Dmaven.test.skip=true -Declipse.p2.mirrors=false -Dtycho.localArtifacts=ignore -Ds3service.https-only=true -Dp2.replaceQualifier=true -Dorg.eclipse.ecf.provider.filetransfer.httpclient.retrieve.readTimeout=1200000 -Dorg.eclipse.equinox.p2.transport.ecf.retry=5 -Dskip.eclipserun.proxies=false -Dskip.osx.signing=false -Dskip.win.signing=false -Dskip.osx.notarizing=false -Dtycho.equinox.resolver.uses=true \ No newline at end of file + ./mvnw --batch-mode -U clean deploy -P${{ inputs.eclipse_profile }} -P${{ inputs.build_type }} -Pgitactions -Pgpg.sign -Dsigning.skip=true -Dmaven.repo.local=~/.m2/repository-signed -Dhttpclient.retry-max=20 -Dmaven.test.skip=true -Declipse.p2.mirrors=false -Dtycho.localArtifacts=ignore -Ds3service.https-only=true -Dp2.replaceQualifier=true -Dorg.eclipse.ecf.provider.filetransfer.httpclient.retrieve.readTimeout=1200000 -Dorg.eclipse.equinox.p2.transport.ecf.retry=5 -Dskip.eclipserun.proxies=false -Dskip.osx.signing=false -Dskip.win.signing=false -Dskip.osx.notarizing=false -Dtycho.equinox.resolver.uses=true \ No newline at end of file