2021-03-15 03:42:36 +00:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2022-05-02 06:32:56 +00:00
|
|
|
- "master"
|
|
|
|
- "staging"
|
|
|
|
- "trying"
|
2021-03-15 03:42:36 +00:00
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build_and_test:
|
2021-04-23 06:29:58 +00:00
|
|
|
env:
|
2022-05-02 06:32:56 +00:00
|
|
|
BUF_VERSION: "0.56.0"
|
|
|
|
NIM_WAKU_VERSION: "v0.9"
|
2021-04-21 03:47:28 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-01-06 02:31:05 +00:00
|
|
|
node: [16]
|
2022-01-10 00:42:59 +00:00
|
|
|
os: [ubuntu-latest]
|
2021-04-21 03:47:28 +00:00
|
|
|
runs-on: ${{ matrix.os }}
|
2021-03-15 03:42:36 +00:00
|
|
|
steps:
|
|
|
|
- name: Checkout code
|
2021-05-17 03:42:28 +00:00
|
|
|
uses: actions/checkout@v2.3.3
|
2021-03-15 03:42:36 +00:00
|
|
|
|
2022-01-10 01:39:37 +00:00
|
|
|
- name: Get nim-waku
|
2021-03-18 23:31:26 +00:00
|
|
|
shell: bash
|
2022-01-10 01:39:37 +00:00
|
|
|
run: |
|
|
|
|
mkdir -p nim-waku/build
|
|
|
|
cd nim-waku
|
2022-01-19 04:43:45 +00:00
|
|
|
wget "https://github.com/status-im/nim-waku/releases/download/${NIM_WAKU_VERSION}/nim-waku-ubuntu-latest.tar.gz"
|
2022-01-10 01:39:37 +00:00
|
|
|
tar xavf nim-waku-ubuntu-latest.tar.gz
|
2021-03-15 06:50:38 +00:00
|
|
|
|
2021-04-14 02:06:56 +00:00
|
|
|
- name: Install NodeJS
|
|
|
|
uses: actions/setup-node@v2
|
|
|
|
with:
|
2021-04-21 03:47:28 +00:00
|
|
|
node-version: ${{ matrix.node }}
|
2021-04-14 02:06:56 +00:00
|
|
|
|
2021-03-26 03:12:16 +00:00
|
|
|
- name: Ensure wakunode2 is ready
|
|
|
|
shell: bash
|
2022-04-01 02:07:01 +00:00
|
|
|
run: |
|
|
|
|
uname -a
|
|
|
|
cd nim-waku/build
|
|
|
|
./wakunode2 --help
|
2021-03-26 03:12:16 +00:00
|
|
|
|
2021-03-15 03:56:06 +00:00
|
|
|
- name: Install bufbuild
|
2021-11-26 05:17:28 +00:00
|
|
|
uses: mathematic-inc/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 03:56:06 +00:00
|
|
|
|
2021-03-15 04:35:42 +00:00
|
|
|
- name: Install Protoc
|
|
|
|
uses: arduino/setup-protoc@v1
|
|
|
|
with:
|
2022-05-02 06:32:56 +00:00
|
|
|
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
|
2021-03-15 03:42:36 +00:00
|
|
|
|
2021-04-20 00:02:47 +00:00
|
|
|
- name: Generate protobuf code
|
|
|
|
run: npm run proto
|
|
|
|
|
|
|
|
- name: Check all protobuf code was committed
|
|
|
|
shell: bash
|
|
|
|
run: |
|
2022-01-04 22:05:07 +00:00
|
|
|
res=$(git status --short --ignore-submodules)
|
|
|
|
echo -n "'$res'" # For debug purposes
|
|
|
|
[ $(echo -n "$res"|wc -l) -eq 0 ]
|
2021-04-20 00:02:47 +00:00
|
|
|
|
2021-03-15 03:42:36 +00:00
|
|
|
- name: build
|
2021-03-15 04:39:55 +00:00
|
|
|
run: npm run build
|
2021-03-15 03:42:36 +00:00
|
|
|
|
2021-04-20 00:02:47 +00:00
|
|
|
- name: Check no proto files changed
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
[ $(git status --short --ignore-submodules|wc -l) -eq 0 ]
|
|
|
|
|
2021-03-15 03:42:36 +00:00
|
|
|
- name: test
|
2021-05-10 10:18:26 +00:00
|
|
|
env:
|
|
|
|
DEBUG: "waku:nim-waku*,waku: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/
|