Skip to content

Commit a910800

Browse files
author
meihuisu
committed
test ci
1 parent 59e0d90 commit a910800

2 files changed

Lines changed: 10 additions & 11 deletions

File tree

.github/workflows/cvms5-ucvm-ci.yml

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
jobs:
88
cvms5-build-ucvm-linux:
9-
if: false
9+
# if: false
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
@@ -69,9 +69,8 @@ jobs:
6969

7070

7171
cvms5-build-ucvm-mac:
72-
# if: false ## skip this one
73-
# if: ${{ success() }}
74-
# needs: [cvms5-build-ucvm-linux]
72+
if: ${{ success() }}
73+
needs: [cvms5-build-ucvm-linux]
7574
runs-on: macos-latest
7675
strategy:
7776
matrix:
@@ -124,12 +123,12 @@ jobs:
124123
- name: check on ucvm
125124
run: (source $UCVM_INSTALL_PATH/conf/ucvm_env.sh; ucvm_query -H)
126125
shell: bash
127-
- name: Start SSH debug with tmate
128-
uses: mxschmitt/action-tmate@v3
129-
with:
130-
limit-access-to-actor: true
131-
- name: sleep to keep runner alive
132-
run: sleep 3600
126+
# - name: Start SSH debug with tmate
127+
# uses: mxschmitt/action-tmate@v3
128+
# with:
129+
# limit-access-to-actor: true
130+
# - name: sleep to keep runner alive
131+
# run: sleep 3600
133132
### check ucvm is still valid
134133
- name: test cvms5 with ucvm
135134
run: (cd $RUNNER_WORKSPACE/cvms5/ucvm/work/model/cvms5; source $UCVM_INSTALL_PATH/conf/ucvm_env.sh; ./.github/scripts/cvms5-test-ucvm.sh)

test/run_unit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
if [[ -z "${UCVM_INSTALL_PATH}" ]]; then
44
if [[ -f "${UCVM_INSTALL_PATH}/model/cvms5/lib" ]]; then
5-
env DYLD_LIBRARY_PATH=${UCVM_INSTALL_PATH}/model/cvms5/lib ./test_cvms5
5+
env DYLD_LIBRARY_PATH=${UCVM_INSTALL_PATH}/model/cvms5/lib:${DYLD_LIBRARY_PATH} ./test_cvms5
66
exit
77
fi
88
fi

0 commit comments

Comments
 (0)