From 0562f0e2fb32599c8132739e37394667a8330cab Mon Sep 17 00:00:00 2001 From: weboko Date: Fri, 27 Jan 2023 23:01:01 +0100 Subject: [PATCH] add new stage for the example --- .github/workflows/ci.yml | 3 ++- ci/Jenkinsfile | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 696b98f..4d06627 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,8 @@ jobs: relay-reactjs-chat, store-reactjs-chat, web-chat, - noise-js + noise-js, + noise-rtc ] runs-on: ubuntu-latest steps: diff --git a/ci/Jenkinsfile b/ci/Jenkinsfile index f05115f..d7ca55f 100644 --- a/ci/Jenkinsfile +++ b/ci/Jenkinsfile @@ -40,6 +40,7 @@ pipeline { stage('store-reactjs-chat') { steps { script { buildExample() } } } stage('web-chat') { steps { script { buildExample() } } } stage('noise-js') { steps { script { buildExample() } } } + stage('noise-rtc') { steps { script { buildExample() } } } } }