Skip to content

Commit 8597e16

Browse files
authored
The stageDependencies envvar is too big for devops (#3216)
* The stageDependencies envvar is too big * we don't need it for now
1 parent 5b88cb5 commit 8597e16

File tree

2 files changed

+0
-22
lines changed

2 files changed

+0
-22
lines changed

scripts/azure-templates-merger.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ parameters:
44
buildAgent: '' # the configuration for the build agent
55
buildPipelineType: 'both' # the type of build pipeline setup
66
requiredArtifacts: [] # the artifacts that this build needs to download
7-
matrixArtifacts: [] # the artifacts that this build needs to download
87
sdl: [] # the SDL properties to use for this job
98

109
jobs:
@@ -18,11 +17,3 @@ jobs:
1817
skipInstall: true
1918
skipSteps: true
2019
requiredArtifacts: ${{ parameters.requiredArtifacts }}
21-
preBuildSteps:
22-
- ${{ each artifact in parameters.matrixArtifacts }}:
23-
- pwsh: |
24-
$json=@'
25-
${{ artifact.jobs }}
26-
'@
27-
.\scripts\get-artifact-names.ps1 -ArtifactsJson $json
28-
displayName: List the pre-built ${{ artifact.name }} artifacts

scripts/azure-templates-stages.yml

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -467,9 +467,6 @@ stages:
467467
- ${{ if ne(parameters.buildPipelineType, 'tests') }}:
468468
- stage: native
469469
displayName: Native
470-
variables:
471-
nativeLinuxJobs: $[ convertToJson(stageDependencies.native_linux) ]
472-
nativeWasmJobs: $[ convertToJson(stageDependencies.native_wasm) ]
473470
dependsOn:
474471
- native_windows
475472
- native_macos
@@ -547,12 +544,6 @@ stages:
547544
- name: native_wasm_3_1_56_SIMD_Threading_linux
548545
- name: native_wasm_3_1_56_Threading_linux
549546
- name: native_wasm_3_1_7_linux
550-
# matix checks
551-
matrixArtifacts:
552-
- name: native_linux
553-
jobs: $(nativeLinuxJobs)
554-
- name: native_wasm
555-
jobs: $(nativeWasmJobs)
556547
- template: /scripts/azure-templates-merger.yml@self # Merge Native WASM Artifacts
557548
parameters:
558549
name: native_wasm
@@ -576,10 +567,6 @@ stages:
576567
- name: native_wasm_3_1_56_SIMD_Threading_linux
577568
- name: native_wasm_3_1_56_Threading_linux
578569
- name: native_wasm_3_1_7_linux
579-
# matix checks
580-
matrixArtifacts:
581-
- name: native_wasm
582-
jobs: $(nativeWasmJobs)
583570
- ${{ if eq(variables['System.TeamProject'], 'devdiv') }}:
584571
- template: /scripts/azure-templates-merger.yml@self # Merge Native MSVC Artifacts
585572
parameters:

0 commit comments

Comments
 (0)