-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'server-side' into rlamb/common-persistent-store
- Loading branch information
Showing
31 changed files
with
523 additions
and
228 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,6 +37,10 @@ jobs: | |
# Each of the platforms for which release-artifacts need generated. | ||
os: [ ubuntu-latest, windows-2022, macos-12 ] | ||
runs-on: ${{ matrix.os }} | ||
outputs: | ||
hashes-linux: ${{ steps.release-sdk.outputs.hashes-linux }} | ||
hashes-windows: ${{ steps.release-sdk.outputs.hashes-windows }} | ||
hashes-macos: ${{ steps.release-sdk.outputs.hashes-macos }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
|
@@ -50,3 +54,19 @@ jobs: | |
github_token: ${{secrets.GITHUB_TOKEN}} | ||
sdk_path: ${{ needs.split-input.outputs.sdk_path}} | ||
sdk_cmake_target: ${{ needs.split-input.outputs.sdk_cmake_target}} | ||
release-sdk-provenance: | ||
needs: ['release-sdk'] | ||
strategy: | ||
matrix: | ||
# Generates a combined attestation for each platform | ||
os: [ linux, windows, macos ] | ||
permissions: | ||
actions: read | ||
id-token: write | ||
contents: write | ||
uses: slsa-framework/slsa-github-generator/.github/workflows/[email protected] | ||
with: | ||
base64-subjects: "${{ needs.release-sdk.outputs[format('hashes-{0}', matrix.os)] }}" | ||
upload-assets: true | ||
upload-tag-name: ${{ inputs.tag }} | ||
provenance-name: ${{ format('{0}-multiple-provenance.intoto.jsonl', matrix.os) }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,6 +26,10 @@ jobs: | |
runs-on: ${{ matrix.os }} | ||
needs: [ 'release-please' ] | ||
if: ${{ needs.release-please.outputs.package-client-released }} | ||
outputs: | ||
hashes-linux: ${{ steps.release-client.outputs.hashes-linux }} | ||
hashes-windows: ${{ steps.release-client.outputs.hashes-windows }} | ||
hashes-macos: ${{ steps.release-client.outputs.hashes-macos }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- id: release-client | ||
|
@@ -37,3 +41,20 @@ jobs: | |
github_token: ${{secrets.GITHUB_TOKEN}} | ||
sdk_path: 'libs/client-sdk' | ||
sdk_cmake_target: 'launchdarkly-cpp-client' | ||
|
||
release-client-provenance: | ||
needs: ['release-please', 'release-client'] | ||
strategy: | ||
matrix: | ||
# Generates a combined attestation for each platform | ||
os: [ linux, windows, macos ] | ||
permissions: | ||
actions: read | ||
id-token: write | ||
contents: write | ||
uses: slsa-framework/slsa-github-generator/.github/workflows/[email protected] | ||
with: | ||
base64-subjects: "${{ needs.release-client.outputs[format('hashes-{0}', matrix.os)] }}" | ||
upload-assets: true | ||
upload-tag-name: ${{ needs.release-please.outputs.package-client-tag }} | ||
provenance-name: ${{ format('{0}-multiple-provenance.intoto.jsonl', matrix.os) }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"libs/client-sdk": "3.0.6", | ||
"libs/server-sent-events": "0.1.1", | ||
"libs/common": "0.3.4", | ||
"libs/internal": "0.1.7" | ||
"libs/client-sdk": "3.0.8", | ||
"libs/server-sent-events": "0.1.3", | ||
"libs/common": "0.3.6", | ||
"libs/internal": "0.1.9" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
{ | ||
"name": "launchdarkly-cpp-client", | ||
"description": "This package.json exists for modeling dependencies for the release process.", | ||
"version": "3.0.6", | ||
"version": "3.0.8", | ||
"private": true, | ||
"dependencies": { | ||
"launchdarkly-cpp-internal": "0.1.7", | ||
"launchdarkly-cpp-common": "0.3.4" | ||
"launchdarkly-cpp-internal": "0.1.9", | ||
"launchdarkly-cpp-common": "0.3.6", | ||
"launchdarkly-cpp-sse-client": "0.1.3" | ||
} | ||
} |
Oops, something went wrong.