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