-
Notifications
You must be signed in to change notification settings - Fork 6
34 lines (32 loc) · 923 Bytes
/
ucvm-ci-mac.yml
File metadata and controls
34 lines (32 loc) · 923 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: ucvm-ci
on:
push:
branches: [ foo ]
jobs:
ucvm-build-cvmh-mac:
runs-on: macos-latest
strategy:
matrix:
python-version: [3.7]
steps:
- name: set UCVM_SRC_PATH
run: echo "UCVM_SRC_PATH=$RUNNER_WORKSPACE/ucvm" >> $GITHUB_ENV
- name: set UCVM_INSTALL_PATH
run: echo "UCVM_INSTALL_PATH=$RUNNER_WORKSPACE/target" >> $GITHUB_ENV
- name: checkout ucvm
uses: actions/checkout@v2
# with:
# ref: testMei
- name: build ucvm with cvmh
run: ./.github/scripts/ucvm-build.sh "cvmh"
shell: bash
# - name: Start SSH via Ngrok
# if: ${{ success() }}
# uses: luchihoratiu/debug-via-ssh@main
# with:
# NGROK_AUTH_TOKEN: ${{ secrets.NGROK_TOKEN }}
# NGROK_TIMEOUT: 3000
# SSH_PASS: ${{ secrets.NGROK_SECRET }}
- name: test ucvm with cvmh
run: ./.github/scripts/ucvm-test.sh
shell: bash