diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4f649ec64..c7f95a9fd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,6 +47,9 @@ jobs: python-version: '3.x' - uses: actions/checkout@v1 + - name: install Python dev dependencies + run: pip3 install -r requirements-dev.txt + - name: install ninja (linux) run: sudo apt-get install ninja-build if: matrix.os == 'ubuntu-latest' @@ -92,7 +95,7 @@ jobs: path: out/install - name: test - run: python check.py --binaryen-bin=out/install/bin + run: python check.py --binaryen-bin=out/bin build-clang: name: clang @@ -104,6 +107,8 @@ jobs: - uses: actions/checkout@v1 - name: install ninja run: sudo apt-get install ninja-build + - name: install Python dev dependencies + run: pip3 install -r requirements-dev.txt - name: cmake run: | mkdir -p out @@ -127,6 +132,8 @@ jobs: - uses: actions/checkout@v1 - name: install ninja run: sudo apt-get install ninja-build + - name: install Python dev dependencies + run: pip3 install -r requirements-dev.txt - name: cmake run: | mkdir -p out @@ -151,6 +158,8 @@ jobs: - uses: actions/checkout@v1 - name: install ninja run: sudo apt-get install ninja-build + - name: install Python dev dependencies + run: pip3 install -r requirements-dev.txt - name: cmake run: | mkdir -p out @@ -174,6 +183,8 @@ jobs: - uses: actions/checkout@v1 - name: install ninja run: sudo apt-get install ninja-build + - name: install Python dev dependencies + run: pip3 install -r requirements-dev.txt - name: cmake run: | mkdir -p out |