Skip to content

Commit

Permalink
Upload bin directory to azure artefacts (chakra-core#6976)
Browse files Browse the repository at this point in the history
Upload `bin` directory to azure artefacts
  • Loading branch information
ShortDevelopment authored Apr 30, 2024
1 parent 1f6e17c commit 5f53f55
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,9 @@ jobs:
ninja
displayName: 'Build'
- publish: $(System.DefaultWorkingDirectory)/build/bin
artifact: $(Agent.JobName)

- script: |
cd build
ninja check
Expand All @@ -119,62 +122,71 @@ jobs:
special_build: ''
do_test: true
test_tags: ''
build_outdir_suffix: ''
x86.Test:
image_name: 'windows-2022'
build_type: 'test'
target: 'x86'
special_build: ''
do_test: true
test_tags: '--include-slow'
build_outdir_suffix: ''
x86.NoJit:
image_name: 'windows-2022'
build_type: 'debug'
target: 'x86'
special_build: '"/p:BuildJIT=false"'
do_test: true
test_tags: '-disablejit'
build_outdir_suffix: '.NoJIT'
x86.Release:
image_name: 'windows-2022'
build_type: 'release'
target: 'x86'
special_build: ''
do_test: false
test_tags: ''
build_outdir_suffix: ''
x64.Debug:
image_name: 'windows-2022'
build_type: 'debug'
target: 'x64'
special_build: ''
do_test: true
test_tags: ''
build_outdir_suffix: ''
x64.Test:
image_name: 'windows-2022'
build_type: 'test'
target: 'x64'
special_build: ''
do_test: true
test_tags: '--include-slow'
build_outdir_suffix: ''
x64.Release:
image_name: 'windows-2022'
build_type: 'release'
target: 'x64'
special_build: ''
do_test: false
test_tags: ''
build_outdir_suffix: ''
win19.x86.Release:
image_name: 'windows-2019'
build_type: 'release'
target: 'x86'
special_build: ''
do_test: false
test_tags: ''
build_outdir_suffix: ''
win19.x64.Release:
image_name: 'windows-2019'
build_type: 'release'
target: 'x64'
special_build: ''
do_test: false
test_tags: ''
build_outdir_suffix: ''
pool:
vmImage: $(image_name)

Expand All @@ -186,6 +198,9 @@ jobs:
BUILD: $(build_type)
SPECIAL: $(special_build)

- publish: $(System.DefaultWorkingDirectory)/Build/VcBuild$(build_outdir_suffix)/bin
artifact: $(Agent.JobName)

- script: test\ci.testone.cmd %TARGET% %BUILD% %TEST_TAGS%
displayName: 'Test'
condition: eq(variables['do_test'], true)
Expand Down

0 comments on commit 5f53f55

Please # to comment.