From 826a346e190366d695ae30ccde02beecac5e1960 Mon Sep 17 00:00:00 2001 From: Krasimir Angelov Date: Thu, 14 Jul 2022 11:50:35 +0200 Subject: [PATCH] building the JavaScript binding is disabled until someone takes care of it --- .github/workflows/build-majestic.yml | 58 ++++++++++++++-------------- 1 file changed, 29 insertions(+), 29 deletions(-) diff --git a/.github/workflows/build-majestic.yml b/.github/workflows/build-majestic.yml index ceb5e3ccb..ae214bfc8 100644 --- a/.github/workflows/build-majestic.yml +++ b/.github/workflows/build-majestic.yml @@ -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 # ----------------------------------------------------------------------------