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:
|
|
|
|
|
2022-08-19 08:28:57 +00:00
|
|
|
env:
|
2022-08-19 15:00:23 +00:00
|
|
|
NWAKU_VERSION: "v0.11"
|
2022-08-19 08:28:57 +00:00
|
|
|
NODE_JS: "16"
|
|
|
|
|
2021-03-15 03:42:36 +00:00
|
|
|
jobs:
|
2022-08-19 13:26:31 +00:00
|
|
|
check:
|
2022-08-19 13:16:16 +00:00
|
|
|
runs-on: ubuntu-latest
|
2021-03-15 03:42:36 +00:00
|
|
|
steps:
|
2022-08-19 13:26:31 +00:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: actions/setup-node@v3
|
2021-04-14 02:06:56 +00:00
|
|
|
with:
|
2022-08-19 08:28:57 +00:00
|
|
|
node-version: ${{ env.NODE_JS }}
|
2022-08-19 13:26:31 +00:00
|
|
|
- uses: bahmutov/npm-install@v1
|
2022-10-30 22:35:59 +00:00
|
|
|
- run: npm run check
|
|
|
|
- run: npm run doc
|
2021-04-14 02:06:56 +00:00
|
|
|
|
2022-08-19 13:26:31 +00:00
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
node-version: ${{ env.NODE_JS }}
|
|
|
|
- uses: bahmutov/npm-install@v1
|
|
|
|
- run: npm run build
|
2021-03-15 03:42:36 +00:00
|
|
|
|
2022-08-19 13:26:31 +00:00
|
|
|
proto:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
node-version: ${{ env.NODE_JS }}
|
|
|
|
- uses: bahmutov/npm-install@v1
|
2021-04-20 00:02:47 +00:00
|
|
|
- name: Generate protobuf code
|
2022-05-30 05:25:00 +00:00
|
|
|
run: |
|
|
|
|
npm run proto
|
|
|
|
npm run fix
|
2021-04-20 00:02:47 +00:00
|
|
|
- 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
|
|
|
|
2022-08-19 13:26:31 +00:00
|
|
|
browser:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
node-version: ${{ env.NODE_JS }}
|
|
|
|
- uses: bahmutov/npm-install@v1
|
|
|
|
- run: npm run test:browser
|
2021-03-15 03:42:36 +00:00
|
|
|
|
2022-08-19 13:26:31 +00:00
|
|
|
node:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
2022-08-19 15:00:23 +00:00
|
|
|
- name: Get nwaku
|
2022-08-19 13:26:31 +00:00
|
|
|
shell: bash
|
|
|
|
run: |
|
2022-08-19 15:00:23 +00:00
|
|
|
mkdir -p nwaku/build
|
|
|
|
cd nwaku
|
|
|
|
wget "https://github.com/status-im/nwaku/releases/download/${NWAKU_VERSION}/nim-waku-ubuntu-latest.tar.gz"
|
2022-08-19 13:26:31 +00:00
|
|
|
tar xavf nim-waku-ubuntu-latest.tar.gz
|
|
|
|
- name: Ensure wakunode2 is ready
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
uname -a
|
2022-08-19 15:00:23 +00:00
|
|
|
cd nwaku/build
|
2022-08-19 13:26:31 +00:00
|
|
|
./wakunode2 --help
|
|
|
|
- uses: actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
node-version: ${{ env.NODE_JS }}
|
|
|
|
- uses: bahmutov/npm-install@v1
|
|
|
|
- run: npm run test:node
|
2021-05-10 10:18:26 +00:00
|
|
|
env:
|
2022-08-19 15:00:23 +00:00
|
|
|
DEBUG: "waku:nwaku*,waku:test*"
|
2021-03-26 01:38:04 +00:00
|
|
|
|
|
|
|
- name: Upload logs on failure
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
if: failure()
|
|
|
|
with:
|
2022-08-19 15:00:23 +00:00
|
|
|
name: nwaku-logs
|
2021-03-26 01:38:04 +00:00
|
|
|
path: log/
|
2022-08-19 09:22:35 +00:00
|
|
|
|
2022-05-27 11:18:36 +00:00
|
|
|
node_with_go_waku:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
env:
|
2022-09-16 02:29:40 +00:00
|
|
|
GO_WAKU_VERSION: "0.2.2"
|
2022-10-30 22:35:59 +00:00
|
|
|
WAKU_SERVICE_NODE_DIR: ../../go-waku
|
2022-08-25 04:26:47 +00:00
|
|
|
WAKU_SERVICE_NODE_BIN: ./waku
|
2022-05-27 11:18:36 +00:00
|
|
|
WAKU_SERVICE_NODE_PARAMS: "--min-relay-peers-to-publish=0" # Can be removed once https://github.com/status-im/nwaku/issues/1004 is done
|
|
|
|
DEBUG: "waku*"
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Get go-waku
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
pwd
|
|
|
|
mkdir -p go-waku/
|
|
|
|
cd go-waku
|
|
|
|
wget "https://github.com/status-im/go-waku/releases/download/v${GO_WAKU_VERSION}/gowaku-${GO_WAKU_VERSION}-x86_64.deb"
|
|
|
|
sudo apt install ./gowaku-${GO_WAKU_VERSION}-x86_64.deb
|
|
|
|
cp $(which waku) ./
|
|
|
|
|
|
|
|
- name: Ensure go-waku is ready
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
uname -a
|
2022-10-30 22:35:59 +00:00
|
|
|
cd packages/core
|
2022-08-25 04:26:47 +00:00
|
|
|
cd "${WAKU_SERVICE_NODE_DIR}"
|
|
|
|
"${WAKU_SERVICE_NODE_BIN}" --version
|
2022-05-27 11:18:36 +00:00
|
|
|
|
|
|
|
- name: Install NodeJS
|
|
|
|
uses: actions/setup-node@v3
|
|
|
|
with:
|
2022-09-05 11:02:01 +00:00
|
|
|
node-version: ${{ env.NODE_JS }}
|
2022-05-27 11:18:36 +00:00
|
|
|
|
|
|
|
- uses: bahmutov/npm-install@v1
|
|
|
|
|
|
|
|
- run: npm run test:node
|
|
|
|
env:
|
|
|
|
DEBUG: "waku:nwaku*,waku:test*"
|
|
|
|
|
|
|
|
- name: Upload logs on failure
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
if: failure()
|
|
|
|
with:
|
|
|
|
name: go-waku-logs
|
|
|
|
path: log/
|
2022-10-31 01:15:37 +00:00
|
|
|
|
|
|
|
release:
|
|
|
|
name: Release
|
|
|
|
runs-on: ubuntu-latest
|
2022-10-31 03:17:34 +00:00
|
|
|
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
|
2022-10-31 01:15:37 +00:00
|
|
|
needs: [check, build, proto, browser, node]
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
- name: Setup Node.js
|
|
|
|
uses: actions/setup-node@v2
|
|
|
|
with:
|
|
|
|
node-version: 'lts/*'
|
|
|
|
- name: Install dependencies
|
|
|
|
run: npm ci
|
|
|
|
- name: Release
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
|
|
run: npx semantic-release
|