js-waku/.github/workflows/ci.yml

108 lines
2.7 KiB
YAML
Raw Normal View History

name: CI
on:
push:
branches:
- 'main'
2021-03-22 23:33:11 +00:00
- 'staging'
- 'trying'
pull_request:
jobs:
build_and_test:
2021-04-23 06:29:58 +00:00
env:
2021-04-26 05:46:36 +00:00
BUF_VERSION: '0.41.0'
2021-04-21 03:47:28 +00:00
strategy:
matrix:
2021-04-28 06:21:29 +00:00
node: [14, 16]
os: [ubuntu-latest, macos-latest]
2021-04-21 03:47:28 +00:00
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: Get nim-waku HEAD
id: nim-waku-head
shell: bash
run: cd nim-waku && echo "::set-output name=ref::$(git rev-parse HEAD)"
2021-03-15 06:50:38 +00:00
- name: Cache nim-waku binary
id: cache-nim-waku
2021-03-15 06:50:38 +00:00
uses: actions/cache@v2
with:
path: |
./nim-waku/build/wakunode2
./nim-waku/vendor/rln/target/debug
2021-04-21 03:47:28 +00:00
key: nim-waku-build-${{ matrix.os }}-v3-${{ steps.nim-waku-head.outputs.ref }}
2021-03-15 06:50:38 +00:00
- name: Install NodeJS
uses: actions/setup-node@v2
with:
2021-04-21 03:47:28 +00:00
node-version: ${{ matrix.node }}
# This would have been done part of npm pretest but it gives better
# visibility in the CI if done as a separate step
- name: Build wakunode2
shell: bash
run: (cd nim-waku && ./build/wakunode2 --help) || npm run nim-waku:build
2021-03-26 03:12:16 +00:00
- name: Ensure wakunode2 is ready
shell: bash
run: cd nim-waku && ./build/wakunode2 --help
2021-04-23 06:29:58 +00:00
- name: Cache buf binary
id: cache-buf-bin
uses: actions/cache@v2
with:
path: /opt/hostedtoolcache/buf/
2021-04-23 06:38:00 +00:00
key: buf-bin-v${{ env.BUF_VERSION }}-ubuntu-latest-v1
2021-04-23 06:29:58 +00:00
- name: Install bufbuild
2021-04-28 06:20:24 +00:00
uses: mu-io/setup-buf@v2beta
2021-03-15 04:23:54 +00:00
with:
2021-04-23 06:29:58 +00:00
buf-version: ${{ env.BUF_VERSION }}
2021-04-28 06:20:24 +00:00
token: ${{ secrets.GITHUB_TOKEN }}
2021-03-15 04:35:42 +00:00
- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
version: '3.x'
2021-04-29 03:34:38 +00:00
repo-token: ${{ secrets.GITHUB_TOKEN }}
2021-03-15 04:35:42 +00:00
2021-03-19 04:07:47 +00:00
- name: Cache npm cache
uses: actions/cache@v2
with:
path: ~/.npm
2021-04-21 03:47:28 +00:00
key: node-${{ matrix.os }}-${{ matrix.node }}-v1-${{ hashFiles('**/package-lock.json') }}
2021-03-19 04:07:47 +00:00
2021-03-15 03:50:52 +00:00
- name: install using npm ci
uses: bahmutov/npm-install@v1
- name: Generate protobuf code
run: npm run proto
- name: Check all protobuf code was committed
shell: bash
run: |
[ $(git status --short --ignore-submodules|wc -l) -eq 0 ]
- name: build
2021-03-15 04:39:55 +00:00
run: npm run build
- name: Check no proto files changed
shell: bash
run: |
[ $(git status --short --ignore-submodules|wc -l) -eq 0 ]
- name: test
2021-03-15 04:39:55 +00:00
run: npm run test
2021-03-26 01:38:04 +00:00
- name: Upload logs on failure
uses: actions/upload-artifact@v2
if: failure()
with:
name: nim-waku-logs
path: log/