1
0
forked from GitHub/gf-core

building the JavaScript binding is disabled until someone takes care of it

This commit is contained in:
Krasimir Angelov
2022-07-14 11:50:35 +02:00
parent bc47a01223
commit 826a346e19

View File

@@ -80,35 +80,35 @@ jobs:
pip install pytest pip install pytest
pytest pytest
ubuntu-javascript: # ubuntu-javascript:
name: JavaScript (Ubuntu) # name: JavaScript (Ubuntu)
runs-on: ubuntu-20.04 # runs-on: ubuntu-20.04
needs: ubuntu-runtime # needs: ubuntu-runtime
#
steps: # steps:
- uses: actions/checkout@v2 # - uses: actions/checkout@v2
- name: Download artifact # - name: Download artifact
uses: actions/download-artifact@master # uses: actions/download-artifact@master
with: # with:
name: libpgf-ubuntu # name: libpgf-ubuntu
- run: | # - run: |
sudo mv lib/* /usr/local/lib/ # sudo mv lib/* /usr/local/lib/
sudo mv include/* /usr/local/include/ # sudo mv include/* /usr/local/include/
#
- name: Setup Node.js # - name: Setup Node.js
uses: actions/setup-node@v2 # uses: actions/setup-node@v2
with: # with:
node-version: '12' # node-version: '12'
#
- name: Install dependencies # - name: Install dependencies
working-directory: ./src/runtime/javascript # working-directory: ./src/runtime/javascript
run: | # run: |
npm ci # npm ci
#
- name: Run testsuite # - name: Run testsuite
working-directory: ./src/runtime/javascript # working-directory: ./src/runtime/javascript
run: | # run: |
npm run test # npm run test
# ---------------------------------------------------------------------------- # ----------------------------------------------------------------------------