update to ucvm 25.7 #72
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: cvmhlabn-ci | |
| on: | |
| push: | |
| branches: [ main ] | |
| jobs: | |
| cvmhlabn-build-standalone-mac: | |
| runs-on: macos-latest | |
| strategy: | |
| matrix: | |
| python-version: [3.7] | |
| steps: | |
| - name: set UCVM_INSTALL_PATH | |
| run: echo "UCVM_INSTALL_PATH=$RUNNER_WORKSPACE/cvmhbn/target" >> $GITHUB_ENV | |
| - name: checkout cvmhbn main | |
| uses: actions/checkout@v2 | |
| with: | |
| ref: main | |
| - name: generate cvmhlabn | |
| run: ./.github/scripts/cvmhbn-generate.sh cvmhlabn | |
| shell: bash | |
| - name: build cvmhlabn | |
| run: ./.github/scripts/cvmhbn-build.sh cvmhlabn | |
| shell: bash | |
| - name: test cvmhlabn standalone | |
| run: ./.github/scripts/cvmhbn-test-standalone.sh cvmhlabn | |
| 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 }} | |
| cvmhlabn-build-standalone-linux: | |
| if: ${{ success() }} | |
| needs: [cvmhlabn-build-standalone-mac] | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: [3.7] | |
| steps: | |
| - name: set UCVM_INSTALL_PATH | |
| run: echo "UCVM_INSTALL_PATH=$RUNNER_WORKSPACE/cvmhbn/target" >> $GITHUB_ENV | |
| - name: checkout cvmhbn main | |
| uses: actions/checkout@v2 | |
| with: | |
| ref: main | |
| - name: generate cvmhlabn | |
| run: ./.github/scripts/cvmhbn-generate.sh cvmhlabn | |
| shell: bash | |
| - name: build cvmhlabn | |
| run: ./.github/scripts/cvmhbn-build.sh cvmhlabn | |
| shell: bash | |
| # - name: Start SSH via Ngrok | |
| # if: ${{ failure() }} | |
| # uses: luchihoratiu/debug-via-ssh@main | |
| # with: | |
| # NGROK_AUTH_TOKEN: ${{ secrets.NGROK_TOKEN }} | |
| # NGROK_TIMEOUT: 3000 | |
| # SSH_PASS: ${{ secrets.NGROK_SECRET }} | |
| - name: test cvmhlabn standalone | |
| run: ./.github/scripts/cvmhbn-test-standalone.sh cvmhlabn | |
| shell: bash |