Create temp notarization folder. Snapshot for e427 distro
This commit is contained in:
4
.github/workflows/eclipse-distro-build.yml
vendored
4
.github/workflows/eclipse-distro-build.yml
vendored
@@ -38,6 +38,10 @@ jobs:
|
||||
- name: Unlock login keychain for OSX signing
|
||||
run: |
|
||||
security unlock-keychain -p ${{ secrets.KEYCHAIN_PASSWORD }} /Users/runner/Library/Keychains/login.keychain-db
|
||||
- name: Create Temp Directory Structure for Notarization Service
|
||||
run: |
|
||||
cd /tmp
|
||||
mkdir -p macos-notarization-service/pending-files
|
||||
- name: Build Eclipse Distro
|
||||
env:
|
||||
tools_s3_access_key: ${{ secrets.TOOLS_S3_ACCESS_KEY }}
|
||||
|
||||
12
.github/workflows/snapshot-previous-eclipse-distro-build.yml
vendored
Normal file
12
.github/workflows/snapshot-previous-eclipse-distro-build.yml
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
name: Snapshot - Previous Eclipse STS Distribution Build
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
e427-distro:
|
||||
uses: ./.github/workflows/eclipse-distro-build.yml
|
||||
with:
|
||||
eclipse_profile: 'e427'
|
||||
build_type: 'snapshot'
|
||||
secrets: inherit
|
||||
@@ -518,14 +518,12 @@
|
||||
|
||||
<parallel failonany="true">
|
||||
|
||||
<exec executable="/bin/bash" failonerror="true">
|
||||
<arg value="${project.build.directory}/../macos-notarize.sh" />
|
||||
<exec executable="${project.build.directory}/../macos-notarize.sh" failonerror="true">
|
||||
<arg value="${dmgName}" />
|
||||
<arg value="${env.MACOS_NOTARIZATION_SERVICE_URL}" />
|
||||
</exec>
|
||||
|
||||
<exec executable="/bin/bash" failonerror="true">
|
||||
<arg value="${project.build.directory}/../macos-notarize.sh" />
|
||||
<exec executable="${project.build.directory}/../macos-notarize.sh" failonerror="true">
|
||||
<arg value="${dmgName-aarch64}" />
|
||||
<arg value="${env.MACOS_NOTARIZATION_SERVICE_URL}" />
|
||||
</exec>
|
||||
@@ -752,4 +750,26 @@
|
||||
</plugins>
|
||||
</pluginManagement> -->
|
||||
</build>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>gpg.sign</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.eclipse.tycho</groupId>
|
||||
<artifactId>tycho-gpg-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
<goal>sign-p2-artifacts</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
|
||||
</project>
|
||||
@@ -526,14 +526,12 @@
|
||||
|
||||
<parallel failonany="true">
|
||||
|
||||
<exec executable="/bin/bash" failonerror="true">
|
||||
<arg value="${project.build.directory}/../macos-notarize.sh" />
|
||||
<exec executable="${project.build.directory}/../macos-notarize.sh" failonerror="true">
|
||||
<arg value="${dmgName}" />
|
||||
<arg value="${env.MACOS_NOTARIZATION_SERVICE_URL}" />
|
||||
</exec>
|
||||
|
||||
<exec executable="/bin/bash" failonerror="true">
|
||||
<arg value="${project.build.directory}/../macos-notarize.sh" />
|
||||
<exec executable="${project.build.directory}/../macos-notarize.sh" failonerror="true">
|
||||
<arg value="${dmgName-aarch64}" />
|
||||
<arg value="${env.MACOS_NOTARIZATION_SERVICE_URL}" />
|
||||
</exec>
|
||||
@@ -760,4 +758,26 @@
|
||||
</plugins>
|
||||
</pluginManagement> -->
|
||||
</build>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>gpg.sign</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.eclipse.tycho</groupId>
|
||||
<artifactId>tycho-gpg-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
<goal>sign-p2-artifacts</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
|
||||
</project>
|
||||
Reference in New Issue
Block a user