From 1a0243ebe310145bebdf6561cb9fd26eb3446dfd Mon Sep 17 00:00:00 2001 From: Freya Gentz Date: Thu, 19 Dec 2019 19:37:34 -0700 Subject: [PATCH] Update nodejs.yml --- .github/workflows/nodejs.yml | 38 ------------------------------------ 1 file changed, 38 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 66a5700..1091ab1 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -36,41 +36,3 @@ jobs: run: | npm install npm test - - build-gyp: - strategy: - fail-fast: false - matrix: - node-version: [8.x, 10.x, 12.x] - python-version: [3.6, 3.7, 3.8] # 2.7, 3.5, - platform: - - { os: windows-latest } - - { os: macos-latest } - - { os: ubuntu-latest, use-clang: true } - - runs-on: ${{ matrix.platform.os }} - - steps: - - uses: actions/checkout@v1 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 - with: - node-version: ${{ matrix.node-version }} - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v1 - with: - python-version: ${{ matrix.python-version }} - - name: node-gyp install - run: | - npm install -g node-gyp - - name: node-gyp configure & build (clang) - if: matrix.platform.use-clang == true - run: | - export CC="$(which clang)" - export CPP="$(which clang++)" - node-gyp configure - node-gyp build - - name: node-gyp configure & build - run: | - node-gyp configure - node-gyp build