Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions .github/workflows/generate-and-publish-sdk-sources.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,12 @@ on:

jobs:
generate-and-publish-sources:
uses: ExpediaGroup/expediagroup-java-sdk/.github/workflows/selfserve-full-workflow.yaml@v20241126
uses: ExpediaGroup/expediagroup-java-sdk/.github/workflows/selfserve-full-workflow.yaml@v20241217
secrets: inherit
with:
name: xap
version: ${{ inputs.version }}
transformations: "--headers key --operationIdsToTags"
repository: 'ExpediaGroup/xap-java-sdk'
ref: ${{ github.head_ref || github.ref_name }}
repository: 'ExpediaGroup/xap-java-sdk'
sdk_repo_ref: 'v20241217'
transformations: '--headers key --operationIdsToTags'
version: ${{ inputs.version }}
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
mvn clean install

- name: Run Integration Tests
working-directory: sdk-repo/integrations
working-directory: sdk-repo/tests/integration
run: |
mvn verify \
-Dcom.expediagroup.xapjavasdk.apikey="${{ secrets.API_KEY }}" \
Expand Down
18 changes: 4 additions & 14 deletions .github/workflows/release-sdk.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,29 +11,19 @@ on:
default: ''

jobs:
run-examples:
integration-tests:
strategy:
matrix:
jdk: [ 8, 11, 17, 21 ]
uses: ./.github/workflows/run-examples.yaml
secrets: inherit
with:
branch: ${{ inputs.branch }}
jdk: ${{ matrix.jdk }}

integration-test:
strategy:
matrix:
jdk: [ 8, 11, 17, 21 ]
uses: ./.github/workflows/integration-test.yaml
uses: ./.github/workflows/integration-tests.yaml
secrets: inherit
with:
branch: ${{ inputs.branch }}
jdk: ${{ matrix.jdk }}

release-sdk:
uses: ExpediaGroup/expediagroup-java-sdk/.github/workflows/selfserve-release-sdk.yaml@v20241126
needs: [ run-examples ]
uses: ExpediaGroup/expediagroup-java-sdk/.github/workflows/selfserve-release-sdk.yaml@v20241217
needs: [ integration-tests ]
secrets: inherit
with:
branch: ${{ inputs.branch }}
Loading