forked from nodejs/llnode
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reduce CI time by moving to GitHub Actions. Fixes: nodejs#312
- Loading branch information
Showing
3 changed files
with
60 additions
and
151 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
name: on push or pull_request | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
|
||
jobs: | ||
build: | ||
runs-on: ${{ matrix.os }} | ||
|
||
strategy: | ||
matrix: | ||
node-version: [8.x] | ||
os: [ubuntu-latest] | ||
# node-version: [8.x, 10.x, 11.x] | ||
# os: [ubuntu-latest, macos-latest] | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
- name: install dependencies Linux | ||
if: matrix.os == 'ubuntu-latest' | ||
run: | | ||
sudo apt-get -qq update | ||
sudo apt-get install lldb-3.9 liblldb-3.9-dev lcov gdb -y | ||
sudo cat /usr/share/apport/apport | ||
- name: install npm dependencies | ||
run: npm install --llnode_build_addon=true --llnode_coverage=true | ||
- name: npm install, build, and test | ||
run: TEST_LLNODE_DEBUG=1 LLNODE_DEBUG=1 TEST_LLDB_BINARY=`which lldb-3.9` npm run nyc-test-all | ||
- name: coverage | ||
run: | | ||
npm run coverage | ||
npm run codecov-upload | ||
env: | ||
CI: true | ||
# linter: | ||
# runs-on: [ubuntu-latest] | ||
# steps: | ||
# - uses: actions/checkout@v1 | ||
# - name: Use Node.js LTS | ||
# uses: actions/setup-node@v1 | ||
# with: | ||
# node-version: 12.x | ||
# - name: npm install, build, and test | ||
# run: | | ||
# sudo apt-get -qq update | ||
# sudo apt-get install lldb-3.9 liblldb-3.9-dev lcov -y | ||
# npm install | ||
# npm run linter |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters