Create temp notarization folder. Snapshot for e427 distro

This commit is contained in:
aboyko
2023-07-06 21:46:51 -04:00
parent 35092816b2
commit 5ff8b9bc71
4 changed files with 64 additions and 8 deletions

View File

@@ -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 }}

View 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

View File

@@ -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>

View File

@@ -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>