Open CV (CV2) is not loading with Metacall #201
Workflow file for this run
This file contains 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: Install MetaCall on Linux Test | |
on: [push, pull_request, workflow_dispatch] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
trigger-cli-build: | |
name: Trigger CLI Docker Build | |
runs-on: ubuntu-latest | |
if: github.event_name != 'pull_request' && github.ref == 'refs/heads/master' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Trigger metacall/cli Build Workflow | |
uses: convictional/[email protected] | |
with: | |
owner: metacall | |
repo: cli | |
github_token: ${{ secrets.G_PERSONAL_ACCESS_TOKEN }} | |
workflow_file_name: docker-hub.yml | |
wait_workflow: true | |
ref: master | |
install-local: | |
name: Install MetaCall via Default Installation (local) | |
runs-on: ubuntu-latest | |
if: always() | |
needs: trigger-cli-build | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Tests | |
run: ./test.sh | |
install-remote: | |
name: Install MetaCall via Default Installation (remote) | |
runs-on: ubuntu-latest | |
if: github.event_name != 'pull_request' && github.ref == 'refs/heads/master' | |
needs: trigger-cli-build | |
steps: | |
- uses: actions/checkout@v4 | |
- run: echo "METACALL_INSTALL_CERTS=certificates_remote" >> $GITHUB_ENV | |
- name: Tests | |
run: ./test.sh |