Skip to content

Commit

Permalink
General clean-up
Browse files Browse the repository at this point in the history
  • Loading branch information
d3r3kk committed Nov 21, 2018
1 parent c72d54d commit f188121
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 40 deletions.
29 changes: 14 additions & 15 deletions build/ci/templates/compile-and-validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ jobs:

echo Run Hygiene = $(runHygiene)

displayName: 'Ch Ch Checkit Owt'
name: 'bash_tool_non_conditional_run'
displayName: 'Show build vars'
name: 'show_bld_vars'


- task: ms.vss-governance-buildtask.governance-build-task-component-detection.ComponentGovernanceComponentDetection@0
Expand Down Expand Up @@ -96,6 +96,18 @@ jobs:
customCommand: ci


- bash: echo AVAILABLE DEPENDENCY VERSIONS

echo Node Version = `node -v`

echo NPM Version = `npm -v`

echo Python Version = `python --version`

displayName: 'Show build dependency versions'
name: 'show_bld_deps_vers'


- task: Npm@1
displayName: 'run vscode:prepublish'
inputs:
Expand Down Expand Up @@ -183,16 +195,3 @@ jobs:
ContainerName: $(azureStorageContainerName)
BlobPrefix: '$(Build.BuildNumber)'
condition: and(succeeded(), eq(variables['uploadBinary'], 'true'))


- bash: echo AVAILABLE DEPENDENCY VERSIONS

echo Node Version = `node -v`

echo NPM Version = `npm -v`

echo Python Version = `python --version`

displayName: 'See whazzzup'
name: 'see_what_is_up_dawg'

33 changes: 8 additions & 25 deletions build/ci/templates/test-phase.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,37 +22,20 @@ steps:

echo NPM Version = $NPM_VERSION

echo Mocha reportfile = $MOCHA_REPORTFILE

echo MOCHA_CI_REPORTFILE = $MOCHA_CI_REPORTFILE

echo MOCHA_CI_REPORTER_ID = $MOCHA_CI_REPORTER_ID

echo MOCHA_REPORTER_JUNIT = $MOCHA_REPORTER_JUNIT

echo COV_UUID = $COV_UUID

echo Test Suite Name = $TEST_SUITE_NAME

echo params Test Suite Name = $OT_TEST_SUITE_NAME

echo giver Test Suite Name = $(TestSuiteName)

echo parameter Test Suite Name = ${{ parameters.TestSuiteName }}
echo Test Suite Name = $(TestSuiteName)

echo pre-defined Build Number = $BUILD_BUILDNUMBER

echo My Build Number = $BUILD_NUM

echo Try just accessing a parameter 'platform' = $PARAMETERS_PLATFORM

displayName: 'Ch Ch Checkit Owt'
name: 'bash_tool_non_conditional_run'
displayName: 'Show build vars'
name: 'bash_tool_show_bld_vars'
env:
BUILD_NUM: $(Build.BuildNumber)
MOCHA_REPORTFILE: $(mochaReportFile)
TEST_SUITE_NAME: $(testSuiteName)
OT_TEST_SUITE_NAME: ${{ format('{0}', parameters.TestSuiteName) }}
NODE_VERSION: $(nodeVersion)
NPM_VERSION: $(npmVersion)
PYTHON_VERSION: $(pythonVersion)
Expand Down Expand Up @@ -94,14 +77,14 @@ steps:
versionSpec: '$(PythonVersion)'


- bash: echo INTERIM WHAZZUP PYTHON VERSION
- bash: echo SHOW ACQUIRED PYTHON

echo Python Version = `python --version`

echo Reported Python Path = `python -c "import sys;print(sys.executable)"`

displayName: 'See Python Version'
name: 'see_py_ver'
displayName: 'Show Python Version'
name: 'show_py_ver'


- task: PythonScript@0
Expand Down Expand Up @@ -139,8 +122,8 @@ steps:

echo Reported Python Path = `python -c "import sys;print(sys.executable)"`

displayName: 'See whazzzup'
name: 'see_what_is_up_dawg'
displayName: 'Show build dependency versions'
name: 'show_bld_deps_vers'


- task: Npm@1
Expand Down

0 comments on commit f188121

Please sign in to comment.