ci/debug
Signed-off-by: Travis Glenn Hansen <travisghansen@yahoo.com>
This commit is contained in:
parent
e202c63420
commit
7ea288a008
|
|
@ -313,11 +313,13 @@ jobs:
|
||||||
os: [Linux, Windows]
|
os: [Linux, Windows]
|
||||||
include:
|
include:
|
||||||
- os: Linux
|
- os: Linux
|
||||||
|
npmartifact: node-modules-linux-amd64
|
||||||
template: "./ci/configs/local-hostpath/basic.yaml"
|
template: "./ci/configs/local-hostpath/basic.yaml"
|
||||||
run: |
|
run: |
|
||||||
# run tests
|
# run tests
|
||||||
ci/bin/run.sh
|
ci/bin/run.sh
|
||||||
- os: Windows
|
- os: Windows
|
||||||
|
npmartifact: node-modules-windows-amd64
|
||||||
template: ".\\ci\\configs\\local-hostpath/basic.yaml"
|
template: ".\\ci\\configs\\local-hostpath/basic.yaml"
|
||||||
run: |
|
run: |
|
||||||
# run tests
|
# run tests
|
||||||
|
|
@ -330,7 +332,7 @@ jobs:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- uses: actions/download-artifact@v2
|
- uses: actions/download-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: node-modules-linux-amd64
|
name: ${{ matrix.npmartifact }}
|
||||||
- name: csi-sanity
|
- name: csi-sanity
|
||||||
run: ${{ matrix.run }}
|
run: ${{ matrix.run }}
|
||||||
env:
|
env:
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,8 @@
|
||||||
set -e
|
set -e
|
||||||
set -x
|
set -x
|
||||||
|
|
||||||
|
echo "current PATH: ${PATH}"
|
||||||
|
|
||||||
: ${CI_BUILD_KEY:="local"}
|
: ${CI_BUILD_KEY:="local"}
|
||||||
: ${TEMPLATE_CONFIG_FILE:=${1}}
|
: ${TEMPLATE_CONFIG_FILE:=${1}}
|
||||||
: ${CSI_MODE:=""}
|
: ${CSI_MODE:=""}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue