update doi #312
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: ucvm-ci | |
| on: | |
| push: | |
| branches: [ main ] | |
| jobs: | |
| ucvm-build-cvmh-taper: | |
| # runs-on: macos-latest | |
| runs-on: ubuntu-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 and elygtl:taper | |
| run: ./.github/scripts/ucvm-build.sh "cvmh,elygtl:taper" | |
| 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 and elygtl:taper | |
| run: ./.github/scripts/ucvm-test.sh | |
| shell: bash | |
| ucvm-build-cvms-cvmh: | |
| if: ${{ success() }} | |
| needs: [ucvm-build-cvmh-taper] | |
| runs-on: ubuntu-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: checkout ucvm toPython3 | |
| uses: actions/checkout@v2 | |
| - name: build ucvm with cvms and cvmh | |
| run: ./.github/scripts/ucvm-build.sh "cvms,cvmh" | |
| shell: bash | |
| - name: test ucvm with cvms and cvmh | |
| run: ./.github/scripts/ucvm-test.sh | |
| shell: bash | |
| ucvm-build-albacore-cvlsu-ivlsu-wfcvm: | |
| if: ${{ success() }} | |
| needs: [ucvm-build-cvms-cvmh] | |
| runs-on: ubuntu-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 albacore, cvlsu, ivlsu and wfcvm | |
| run: ./.github/scripts/ucvm-build.sh "albacore,cvlsu,ivlsu,wfcvm" | |
| shell: bash | |
| - name: test ucvm with albacore, cvlsu, ivlsu and wfcvm | |
| run: ./.github/scripts/ucvm-test.sh | |
| shell: bash |