|
@@ -41,6 +41,7 @@ jobs:
|
|
|
timeout-minutes: 20
|
|
|
env:
|
|
|
TARGET_ARCH: ${{ inputs.target-arch }}
|
|
|
+ BUILD_TYPE: linux
|
|
|
container: ${{ fromJSON(inputs.test-container) }}
|
|
|
steps:
|
|
|
- name: Load Build Tools
|
|
@@ -71,8 +72,8 @@ jobs:
|
|
|
- name: Download Generated Artifacts
|
|
|
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e
|
|
|
with:
|
|
|
- name: generated_artifacts_linux_${{ env.TARGET_ARCH }}
|
|
|
- path: ./generated_artifacts_linux_${{ env.TARGET_ARCH }}
|
|
|
+ name: generated_artifacts_${{ env.BUILD_TYPE }}_${{ env.TARGET_ARCH }}
|
|
|
+ path: ./generated_artifacts_${{ env.BUILD_TYPE }}_${{ env.TARGET_ARCH }}
|
|
|
- name: Download Src Artifacts
|
|
|
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e
|
|
|
with:
|
|
@@ -103,6 +104,7 @@ jobs:
|
|
|
timeout-minutes: 20
|
|
|
env:
|
|
|
TARGET_ARCH: ${{ inputs.target-arch }}
|
|
|
+ BUILD_TYPE: linux
|
|
|
container: ${{ fromJSON(inputs.test-container) }}
|
|
|
steps:
|
|
|
- name: Load Build Tools
|
|
@@ -133,8 +135,8 @@ jobs:
|
|
|
- name: Download Generated Artifacts
|
|
|
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e
|
|
|
with:
|
|
|
- name: generated_artifacts_linux_${{ env.TARGET_ARCH }}
|
|
|
- path: ./generated_artifacts_linux_${{ env.TARGET_ARCH }}
|
|
|
+ name: generated_artifacts_${{ env.BUILD_TYPE }}_${{ env.TARGET_ARCH }}
|
|
|
+ path: ./generated_artifacts_${{ env.BUILD_TYPE }}_${{ env.TARGET_ARCH }}
|
|
|
- name: Download Src Artifacts
|
|
|
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e
|
|
|
with:
|