|
@@ -0,0 +1,183 @@
|
|
|
|
+name: CI
|
|
|
|
+
|
|
|
|
+on:
|
|
|
|
+ push:
|
|
|
|
+ branches:
|
|
|
|
+ - '**'
|
|
|
|
+ tags-ignore:
|
|
|
|
+ - '**'
|
|
|
|
+ pull_request:
|
|
|
|
+ branches:
|
|
|
|
+ - '**'
|
|
|
|
+
|
|
|
|
+jobs:
|
|
|
|
+ build:
|
|
|
|
+ if: "!contains(github.event.head_commit.message, 'skip ci')"
|
|
|
|
+
|
|
|
|
+ strategy:
|
|
|
|
+ fail-fast: false
|
|
|
|
+ matrix:
|
|
|
|
+ os: [ubuntu-latest, macos-latest, windows-latest]
|
|
|
|
+
|
|
|
|
+ name: stable - ${{ matrix.os }} - node@12
|
|
|
|
+ runs-on: ${{ matrix.os }}
|
|
|
|
+
|
|
|
|
+ steps:
|
|
|
|
+ - uses: actions/checkout@v2
|
|
|
|
+
|
|
|
|
+ - name: Setup node
|
|
|
|
+ uses: actions/setup-node@v1
|
|
|
|
+ with:
|
|
|
|
+ node-version: 12
|
|
|
|
+
|
|
|
|
+ - name: Set platform name
|
|
|
|
+ run: |
|
|
|
|
+ export NODE_PLATFORM_NAME=$(node -e "console.log(require('os').platform())")
|
|
|
|
+ echo "::set-env name=PLATFORM_NAME::$NODE_PLATFORM_NAME"
|
|
|
|
+ shell: bash
|
|
|
|
+
|
|
|
|
+ - name: Install llvm
|
|
|
|
+ if: matrix.os == 'windows-latest'
|
|
|
|
+ run: choco install -y llvm
|
|
|
|
+
|
|
|
|
+ - name: Set llvm path
|
|
|
|
+ if: matrix.os == 'windows-latest'
|
|
|
|
+ uses: allenevans/set-env@v1.0.0
|
|
|
|
+ with:
|
|
|
|
+ LIBCLANG_PATH: 'C:\\Program Files\\LLVM\\bin'
|
|
|
|
+
|
|
|
|
+ - name: Install
|
|
|
|
+ uses: actions-rs/toolchain@v1
|
|
|
|
+ with:
|
|
|
|
+ toolchain: stable
|
|
|
|
+ profile: minimal
|
|
|
|
+ override: true
|
|
|
|
+
|
|
|
|
+ - name: Generate Cargo.lock
|
|
|
|
+ uses: actions-rs/cargo@v1
|
|
|
|
+ with:
|
|
|
|
+ command: generate-lockfile
|
|
|
|
+
|
|
|
|
+ - name: Cache cargo registry
|
|
|
|
+ uses: actions/cache@v1
|
|
|
|
+ with:
|
|
|
|
+ path: ~/.cargo/registry
|
|
|
|
+ key: stable-${{ matrix.os }}-node@12-cargo-registry-trimmed-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
+
|
|
|
|
+ - name: Cache cargo index
|
|
|
|
+ uses: actions/cache@v1
|
|
|
|
+ with:
|
|
|
|
+ path: ~/.cargo/git
|
|
|
|
+ key: stable-${{ matrix.os }}gnu-node@12-cargo-index-trimmed-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
+
|
|
|
|
+ - name: Cache NPM dependencies
|
|
|
|
+ uses: actions/cache@v1
|
|
|
|
+ with:
|
|
|
|
+ path: node_modules
|
|
|
|
+ key: npm-cache-${{ matrix.os }}-node@12-${{ hashFiles('yarn.lock') }}
|
|
|
|
+ restore-keys: |
|
|
|
|
+ npm-cache-
|
|
|
|
+ - name: 'Install dependencies'
|
|
|
|
+ run: yarn install --frozen-lockfile --registry https://registry.npmjs.org
|
|
|
|
+
|
|
|
|
+ - name: 'Build'
|
|
|
|
+ run: yarn build
|
|
|
|
+
|
|
|
|
+ - name: Upload artifact
|
|
|
|
+ uses: actions/upload-artifact@v2
|
|
|
|
+ with:
|
|
|
|
+ name: bindings-${{ env.PLATFORM_NAME }}
|
|
|
|
+ path: index.${{ env.PLATFORM_NAME }}.node
|
|
|
|
+
|
|
|
|
+ - name: Clear the cargo caches
|
|
|
|
+ run: |
|
|
|
|
+ cargo install cargo-cache --no-default-features --features ci-autoclean
|
|
|
|
+ cargo-cache
|
|
|
|
+
|
|
|
|
+ test_binding:
|
|
|
|
+ name: Test bindings on ${{ matrix.os }} - node@${{ matrix.node }}
|
|
|
|
+ needs:
|
|
|
|
+ - build
|
|
|
|
+ strategy:
|
|
|
|
+ fail-fast: false
|
|
|
|
+ matrix:
|
|
|
|
+ os: [ubuntu-latest, macos-latest, windows-latest]
|
|
|
|
+ node: ['10', '12', '14']
|
|
|
|
+ runs-on: ${{ matrix.os }}
|
|
|
|
+
|
|
|
|
+ steps:
|
|
|
|
+ - uses: actions/checkout@v2
|
|
|
|
+
|
|
|
|
+ - name: Setup node
|
|
|
|
+ uses: actions/setup-node@v1
|
|
|
|
+ with:
|
|
|
|
+ node-version: ${{ matrix.node }}
|
|
|
|
+
|
|
|
|
+ - name: Set platform name
|
|
|
|
+ run: |
|
|
|
|
+ export NODE_PLATFORM_NAME=$(node -e "console.log(require('os').platform())")
|
|
|
|
+ echo "::set-env name=PLATFORM_NAME::$NODE_PLATFORM_NAME"
|
|
|
|
+ shell: bash
|
|
|
|
+
|
|
|
|
+ # Do not cache node_modules, or yarn workspace links broken
|
|
|
|
+ - name: 'Install dependencies'
|
|
|
|
+ run: yarn install --frozen-lockfile --registry https://registry.npmjs.org
|
|
|
|
+
|
|
|
|
+ - name: Download artifacts
|
|
|
|
+ uses: actions/download-artifact@v2
|
|
|
|
+ with:
|
|
|
|
+ name: bindings-${{ env.PLATFORM_NAME }}
|
|
|
|
+ path: .
|
|
|
|
+
|
|
|
|
+ - name: List packages
|
|
|
|
+ run: ls -R .
|
|
|
|
+ shell: bash
|
|
|
|
+
|
|
|
|
+ - name: Test bindings
|
|
|
|
+ run: yarn test
|
|
|
|
+
|
|
|
|
+ publish:
|
|
|
|
+ name: Publish
|
|
|
|
+ if: "startsWith(github.event.head_commit.message, 'chore(release): publish')"
|
|
|
|
+ runs-on: ubuntu-latest
|
|
|
|
+ needs: test_binding
|
|
|
|
+
|
|
|
|
+ steps:
|
|
|
|
+ - uses: actions/checkout@v2
|
|
|
|
+
|
|
|
|
+ - name: Setup node
|
|
|
|
+ uses: actions/setup-node@v1
|
|
|
|
+ with:
|
|
|
|
+ node-version: 12
|
|
|
|
+
|
|
|
|
+ - name: Cache NPM dependencies
|
|
|
|
+ uses: actions/cache@v1
|
|
|
|
+ with:
|
|
|
|
+ path: node_modules
|
|
|
|
+ key: npm-cache-ubuntu-latest-${{ hashFiles('yarn.lock') }}
|
|
|
|
+ restore-keys: |
|
|
|
|
+ npm-cache-
|
|
|
|
+ - name: 'Install dependencies'
|
|
|
|
+ run: yarn install --frozen-lockfile --registry https://registry.npmjs.org
|
|
|
|
+
|
|
|
|
+ - name: Download all artifacts
|
|
|
|
+ uses: actions/download-artifact@v2
|
|
|
|
+ with:
|
|
|
|
+ path: .
|
|
|
|
+
|
|
|
|
+ - name: List packages
|
|
|
|
+ run: ls -R .
|
|
|
|
+ shell: bash
|
|
|
|
+
|
|
|
|
+ - name: Upload artifacts to Github release
|
|
|
|
+ run: |
|
|
|
|
+ node ./upload-to-release.js
|
|
|
|
+ env:
|
|
|
|
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
+
|
|
|
|
+ - name: Lerna publish
|
|
|
|
+ run: |
|
|
|
|
+ echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/.npmrc
|
|
|
|
+ npm publish
|
|
|
|
+ env:
|
|
|
|
+ NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|