517 lines
22 KiB
YAML
517 lines
22 KiB
YAML
name: 'Automated tests'
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'develop'
|
|
- 'v2.[5-9].x-release'
|
|
- 'v[3-9].*.x-release'
|
|
paths-ignore:
|
|
- 'docs/**'
|
|
- '**/*.md'
|
|
pull_request:
|
|
types: [opened, synchronize, reopened]
|
|
paths-ignore:
|
|
- 'docs/**'
|
|
- '**/*.md'
|
|
permissions:
|
|
contents: read
|
|
jobs:
|
|
build-bbb-apps-akka:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0 # Fetch all history
|
|
- run: echo "CACHE_AKKA_APPS_KEY=$(git log -1 --format=%H -- akka-bbb-apps)" >> $GITHUB_ENV
|
|
- run: echo "CACHE_COMMON_MSG_KEY=$(git log -1 --format=%H -- bbb-common-message)" >> $GITHUB_ENV
|
|
- name: Handle cache
|
|
id: cache-action
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: artifacts.tar
|
|
key: ${{ runner.os }}-bbb-apps-akka-${{ env.CACHE_AKKA_APPS_KEY }}-${{ env.CACHE_COMMON_MSG_KEY }}
|
|
- if: ${{ steps.cache-action.outputs.cache-hit != 'true' }}
|
|
name: Generate artifacts
|
|
run: |
|
|
./build/get_external_dependencies.sh
|
|
./build/setup.sh bbb-apps-akka
|
|
tar cvf artifacts.tar artifacts/
|
|
- name: Archive packages
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: artifacts_bbb-apps-akka.tar
|
|
path: |
|
|
artifacts.tar
|
|
build-bbb-config:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- run: ./build/get_external_dependencies.sh
|
|
- run: ./build/setup.sh bbb-config
|
|
- run: tar cvf artifacts.tar artifacts/
|
|
- name: Archive packages
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: artifacts_bbb-config.tar
|
|
path: |
|
|
artifacts.tar
|
|
build-bbb-export-annotations:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- run: ./build/get_external_dependencies.sh
|
|
- run: ./build/setup.sh bbb-export-annotations
|
|
- run: tar cvf artifacts.tar artifacts/
|
|
- name: Archive packages
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: artifacts_bbb-export-annotations.tar
|
|
path: |
|
|
artifacts.tar
|
|
build-bbb-learning-dashboard:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0 # Fetch all history
|
|
- run: echo "CACHE_LEARNING_DASHBOARD_KEY=$(git log -1 --format=%H -- bbb-learning-dashboard)" >> $GITHUB_ENV
|
|
- name: Handle cache
|
|
id: cache-action
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: artifacts.tar
|
|
key: ${{ runner.os }}-bbb-learning-dashboard-${{ env.CACHE_LEARNING_DASHBOARD_KEY }}
|
|
- if: ${{ steps.cache-action.outputs.cache-hit != 'true' }}
|
|
name: Generate artifacts
|
|
run: |
|
|
./build/get_external_dependencies.sh
|
|
./build/setup.sh bbb-learning-dashboard
|
|
tar cvf artifacts.tar artifacts/
|
|
- name: Archive packages
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: artifacts_bbb-learning-dashboard.tar
|
|
path: artifacts.tar
|
|
build-bbb-playback-record:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- run: ./build/get_external_dependencies.sh
|
|
- run: ./build/setup.sh bbb-playback
|
|
- run: ./build/setup.sh bbb-playback-notes
|
|
- run: ./build/setup.sh bbb-playback-podcast
|
|
- run: ./build/setup.sh bbb-playback-presentation
|
|
- run: ./build/setup.sh bbb-playback-screenshare
|
|
- run: ./build/setup.sh bbb-playback-video
|
|
- run: ./build/setup.sh bbb-record-core
|
|
- run: tar cvf artifacts.tar artifacts/
|
|
- name: Archive packages
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: artifacts_bbb-playback-record.tar
|
|
path: |
|
|
artifacts.tar
|
|
build-bbb-etherpad:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0 # Fetch all history
|
|
- run: echo "CACHE_ETHERPAD_VERSION_KEY=$(git log -1 --format=%H -- bbb-etherpad.placeholder.sh)" >> $GITHUB_ENV
|
|
- run: echo "CACHE_ETHERPAD_BUILD_KEY=$(git log -1 --format=%H -- build/packages-template/bbb-etherpad)" >> $GITHUB_ENV
|
|
- run: echo "CACHE_URL1_KEY=$(curl -s https://api.github.com/repos/mconf/ep_pad_ttl/commits | md5sum | awk '{ print $1 }')" >> $GITHUB_ENV
|
|
- run: echo "CACHE_URL2_KEY=$(curl -s https://api.github.com/repos/alangecker/bbb-etherpad-plugin/commits | md5sum | awk '{ print $1 }')" >> $GITHUB_ENV
|
|
- run: echo "CACHE_URL3_KEY=$(curl -s https://api.github.com/repos/mconf/ep_redis_publisher/commits | md5sum | awk '{ print $1 }')" >> $GITHUB_ENV
|
|
- run: echo "CACHE_URL4_KEY=$(curl -s https://api.github.com/repos/alangecker/bbb-etherpad-skin/commits | md5sum | awk '{ print $1 }')" >> $GITHUB_ENV
|
|
- name: Handle cache
|
|
id: cache-action
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: artifacts.tar
|
|
key: ${{ runner.os }}-bbb-etherpad-${{ env.CACHE_ETHERPAD_VERSION_KEY }}-${{ env.CACHE_ETHERPAD_BUILD_KEY }}-${{ env.CACHE_URL1_KEY }}-${{ env.CACHE_URL2_KEY }}-${{ env.CACHE_URL3_KEY }}-${{ env.CACHE_URL4_KEY }}
|
|
- if: ${{ steps.cache-action.outputs.cache-hit != 'true' }}
|
|
name: Generate artifacts
|
|
run: |
|
|
./build/get_external_dependencies.sh
|
|
./build/setup.sh bbb-etherpad
|
|
tar cvf artifacts.tar artifacts/
|
|
- name: Archive packages
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: artifacts_bbb-etherpad.tar
|
|
path: |
|
|
artifacts.tar
|
|
build-bbb-bbb-web:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0 # Fetch all history
|
|
- run: echo "CACHE_BBB_WEB_KEY=$(git log -1 --format=%H -- bigbluebutton-web)" >> $GITHUB_ENV
|
|
- run: echo "CACHE_COMMON_MSG_KEY=$(git log -1 --format=%H -- bbb-common-message)" >> $GITHUB_ENV
|
|
- run: echo "CACHE_COMMON_WEB_KEY=$(git log -1 --format=%H -- bbb-common-web)" >> $GITHUB_ENV
|
|
- name: Handle cache
|
|
id: cache-action
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: artifacts.tar
|
|
key: ${{ runner.os }}-bbb-web-${{ env.CACHE_BBB_WEB_KEY }}-${{ env.CACHE_COMMON_MSG_KEY }}-${{ env.CACHE_COMMON_WEB_KEY }}
|
|
- if: ${{ steps.cache-action.outputs.cache-hit != 'true' }}
|
|
name: Generate artifacts
|
|
run: |
|
|
./build/get_external_dependencies.sh
|
|
./build/setup.sh bbb-web
|
|
tar cvf artifacts.tar artifacts/
|
|
- name: Archive packages
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: artifacts_bbb-web.tar
|
|
path: |
|
|
artifacts.tar
|
|
build-bbb-fsesl-akka:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0 # Fetch all history
|
|
- run: echo "CACHE_AKKA_FSESL_KEY=$(git log -1 --format=%H -- akka-bbb-fsesl)" >> $GITHUB_ENV
|
|
- run: echo "CACHE_COMMON_MSG_KEY=$(git log -1 --format=%H -- bbb-common-message)" >> $GITHUB_ENV
|
|
- name: Handle cache
|
|
id: cache-action
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: artifacts.tar
|
|
key: ${{ runner.os }}-bbb-fsesl-akka-${{ env.CACHE_AKKA_FSESL_KEY }}-${{ env.CACHE_COMMON_MSG_KEY }}
|
|
- if: ${{ steps.cache-action.outputs.cache-hit != 'true' }}
|
|
name: Generate artifacts
|
|
run: |
|
|
./build/get_external_dependencies.sh
|
|
./build/setup.sh bbb-fsesl-akka
|
|
tar cvf artifacts.tar artifacts/
|
|
- name: Archive packages
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: artifacts_bbb-fsesl-akka.tar
|
|
path: |
|
|
artifacts.tar
|
|
build-bbb-html5:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0 # Fetch all history
|
|
- run: echo "CACHE_KEY=$(git log -1 --format=%H -- bigbluebutton-html5)" >> $GITHUB_ENV
|
|
- name: Handle cache
|
|
id: cache-action
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: artifacts.tar
|
|
key: ${{ runner.os }}-bbb-html5-${{ env.CACHE_KEY }}
|
|
- if: ${{ steps.cache-action.outputs.cache-hit != 'true' }}
|
|
name: Generate artifacts
|
|
run: |
|
|
./build/get_external_dependencies.sh
|
|
./build/setup.sh bbb-html5-nodejs
|
|
./build/setup.sh bbb-html5
|
|
tar cvf artifacts.tar artifacts/
|
|
- name: Archive packages
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: artifacts_bbb-html5.tar
|
|
path: |
|
|
artifacts.tar
|
|
build-bbb-freeswitch:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0 # Fetch all history
|
|
- run: echo "CACHE_FREESWITCH_KEY=$(git log -1 --format=%H -- build/packages-template/bbb-freeswitch-core)" >> $GITHUB_ENV
|
|
- run: echo "CACHE_FREESWITCH_SOUNDS_KEY=$(git log -1 --format=%H -- build/packages-template/bbb-freeswitch-sounds)" >> $GITHUB_ENV
|
|
- run: echo "CACHE_SOUNDS_KEY=$(curl -Is http://bigbluebutton.org/downloads/sounds.tar.gz | grep "Last-Modified" | md5sum | awk '{ print $1 }')" >> $GITHUB_ENV
|
|
- name: Handle cache
|
|
id: cache-action
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: artifacts.tar
|
|
key: ${{ runner.os }}-bbb-freeswitch-${{ env.CACHE_FREESWITCH_KEY }}-${{ env.CACHE_FREESWITCH_SOUNDS_KEY }}-${{ env.CACHE_SOUNDS_KEY }}
|
|
- if: ${{ steps.cache-action.outputs.cache-hit != 'true' }}
|
|
name: Generate artifacts
|
|
run: |
|
|
./build/get_external_dependencies.sh
|
|
./build/setup.sh bbb-freeswitch-core
|
|
./build/setup.sh bbb-freeswitch-sounds
|
|
tar cvf artifacts.tar artifacts/
|
|
- name: Archive packages
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: artifacts_bbb-freeswitch.tar
|
|
path: |
|
|
artifacts.tar
|
|
build-others:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- run: ./build/get_external_dependencies.sh
|
|
- run: ./build/setup.sh bbb-mkclean
|
|
- run: ./build/setup.sh bbb-pads
|
|
- run: ./build/setup.sh bbb-libreoffice-docker
|
|
- run: ./build/setup.sh bbb-webrtc-sfu
|
|
- run: ./build/setup.sh bbb-webrtc-recorder
|
|
- run: ./build/setup.sh bbb-transcription-controller
|
|
- run: ./build/setup.sh bigbluebutton
|
|
- run: tar cvf artifacts.tar artifacts/
|
|
- name: Archive packages
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: artifacts.tar
|
|
path: |
|
|
artifacts.tar
|
|
# - name: Fake package build
|
|
# run: |
|
|
# sudo -i <<EOF
|
|
# set -e
|
|
# echo "Faking a package build (to speed up installation test)"
|
|
# cd /
|
|
# wget -nv "http://ci.bbb.imdt.dev/artifacts.tar"
|
|
# tar xf artifacts.tar
|
|
# mv artifacts /home/runner/work/bigbluebutton/bigbluebutton/artifacts/
|
|
# EOF
|
|
install-and-run-tests:
|
|
needs: [build-bbb-apps-akka, build-bbb-config, build-bbb-export-annotations, build-bbb-learning-dashboard, build-bbb-playback-record, build-bbb-etherpad, build-bbb-bbb-web, build-bbb-fsesl-akka, build-bbb-html5, build-bbb-freeswitch, build-others]
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- run: ./build/get_external_dependencies.sh
|
|
- name: Download artifacts_bbb-apps-akka
|
|
uses: actions/download-artifact@v3
|
|
with:
|
|
name: artifacts_bbb-apps-akka.tar
|
|
- run: tar xf artifacts.tar
|
|
- name: Download artifacts_bbb-config
|
|
uses: actions/download-artifact@v3
|
|
with:
|
|
name: artifacts_bbb-config.tar
|
|
- run: tar xf artifacts.tar
|
|
- name: Download artifacts_bbb-export-annotations
|
|
uses: actions/download-artifact@v3
|
|
with:
|
|
name: artifacts_bbb-export-annotations.tar
|
|
- run: tar xf artifacts.tar
|
|
- name: Download artifacts_bbb-learning-dashboard
|
|
uses: actions/download-artifact@v3
|
|
with:
|
|
name: artifacts_bbb-learning-dashboard.tar
|
|
- run: tar xf artifacts.tar
|
|
- name: Download artifacts_bbb-playback-record
|
|
uses: actions/download-artifact@v3
|
|
with:
|
|
name: artifacts_bbb-playback-record.tar
|
|
- run: tar xf artifacts.tar
|
|
- name: Download artifacts_bbb-etherpad
|
|
uses: actions/download-artifact@v3
|
|
with:
|
|
name: artifacts_bbb-etherpad.tar
|
|
- run: tar xf artifacts.tar
|
|
- name: Download artifacts_bbb-freeswitch
|
|
uses: actions/download-artifact@v3
|
|
with:
|
|
name: artifacts_bbb-freeswitch.tar
|
|
- run: tar xf artifacts.tar
|
|
- name: Download artifacts_bbb-web
|
|
uses: actions/download-artifact@v3
|
|
with:
|
|
name: artifacts_bbb-web.tar
|
|
- run: tar xf artifacts.tar
|
|
- name: Download artifacts_bbb-fsesl-akka
|
|
uses: actions/download-artifact@v3
|
|
with:
|
|
name: artifacts_bbb-fsesl-akka.tar
|
|
- run: tar xf artifacts.tar
|
|
- name: Download artifacts_bbb-html5
|
|
uses: actions/download-artifact@v3
|
|
with:
|
|
name: artifacts_bbb-html5.tar
|
|
- run: tar xf artifacts.tar
|
|
- name: Download artifacts
|
|
uses: actions/download-artifact@v3
|
|
with:
|
|
name: artifacts.tar
|
|
- run: tar xf artifacts.tar
|
|
- name: Extracting files .tar
|
|
run: |
|
|
set -e
|
|
pwd
|
|
echo "----ls artifacts/----"
|
|
ls artifacts/
|
|
COMMIT_DATE="$(git log -n1 --pretty='format:%cd' --date=format:'%Y%m%dT%H%M%S')"
|
|
VERSION_NUMBER="$(cat bigbluebutton-config/bigbluebutton-release | cut -d '=' -f2 | cut -d "-" -f1)"
|
|
VERSION_ADDON="$(cat bigbluebutton-config/bigbluebutton-release | cut -d '=' -f2 | cut -d "-" -f2)"
|
|
GIT_REV=$(git rev-parse HEAD)
|
|
GIT_REV="local-build-${GIT_REV:0:10}"
|
|
VERSION="${VERSION_NUMBER}~${VERSION_ADDON}+${COMMIT_DATE}-git.${GIT_REV}"
|
|
echo "COMMIT_DATE: $COMMIT_DATE"
|
|
echo "VERSION_NUMBER: $VERSION_NUMBER"
|
|
echo "VERSION_ADDON: $VERSION_ADDON"
|
|
echo "GIT_REV: $GIT_REV"
|
|
echo "VERSION: $VERSION"
|
|
mv artifacts/bbb-apps-akka_2* artifacts/bbb-apps-akka_2:${VERSION}_all.deb
|
|
mv artifacts/bbb-fsesl-akka_2* artifacts/bbb-fsesl-akka_2:${VERSION}_all.deb
|
|
mv artifacts/bbb-etherpad* artifacts/bbb-etherpad_${VERSION}_amd64.deb
|
|
mv artifacts/bbb-freeswitch-core* artifacts/bbb-freeswitch-core_${VERSION}_amd64.deb
|
|
mv artifacts/bbb-freeswitch-sounds* artifacts/bbb-freeswitch-sounds_${VERSION}_amd64.deb
|
|
mv artifacts/bbb-html5-nodejs* artifacts/bbb-html5-nodejs_${VERSION}_amd64.deb
|
|
mv artifacts/bbb-html5_* artifacts/bbb-html5_${VERSION}_amd64.deb
|
|
mv artifacts/bbb-web_* artifacts/bbb-web_${VERSION}_amd64.deb
|
|
mv artifacts/bbb-learning-dashboard_* artifacts/bbb-learning-dashboard_${VERSION}_amd64.deb
|
|
mv artifacts/bbb-config_* artifacts/bbb-config_${VERSION}_amd64.deb
|
|
echo "----Renamed----"
|
|
ls artifacts/
|
|
echo "Done"
|
|
- name: Generate CA
|
|
run: |
|
|
sudo -i <<EOF
|
|
set -e
|
|
mkdir /root/bbb-ci-ssl/
|
|
cd /root/bbb-ci-ssl/
|
|
openssl rand -base64 48 > /root/bbb-ci-ssl/bbb-dev-ca.pass ;
|
|
chmod 600 /root/bbb-ci-ssl/bbb-dev-ca.pass ;
|
|
openssl genrsa -des3 -out bbb-dev-ca.key -passout file:/root/bbb-ci-ssl/bbb-dev-ca.pass 2048 ;
|
|
openssl req -x509 -new -nodes -key bbb-dev-ca.key -sha256 -days 1460 -passin file:/root/bbb-ci-ssl/bbb-dev-ca.pass -out bbb-dev-ca.crt -subj "/C=CA/ST=BBB/L=BBB/O=BBB/OU=BBB/CN=BBB-DEV" ;
|
|
EOF
|
|
- name: Trust CA
|
|
run: |
|
|
sudo -i <<EOF
|
|
set -e
|
|
sudo mkdir /usr/local/share/ca-certificates/bbb-dev/
|
|
sudo cp /root/bbb-ci-ssl/bbb-dev-ca.crt /usr/local/share/ca-certificates/bbb-dev/
|
|
sudo chmod 644 /usr/local/share/ca-certificates/bbb-dev/bbb-dev-ca.crt
|
|
sudo update-ca-certificates
|
|
EOF
|
|
- name: Generate certificate
|
|
run: |
|
|
sudo sh -c '
|
|
cd /root/bbb-ci-ssl/
|
|
echo "$(hostname -I | cut -d" " -f1) bbb-ci.test" >> /etc/hosts
|
|
openssl genrsa -out bbb-ci.test.key 2048
|
|
rm -f bbb-ci.test.csr bbb-ci.test.crt bbb-ci.test.key
|
|
cat > bbb-ci.test.ext << EOF
|
|
authorityKeyIdentifier=keyid,issuer
|
|
basicConstraints=CA:FALSE
|
|
keyUsage = digitalSignature, nonRepudiation, keyEncipherment, dataEncipherment
|
|
subjectAltName = @alt_names
|
|
[alt_names]
|
|
DNS.1 = bbb-ci.test
|
|
EOF
|
|
openssl req -nodes -newkey rsa:2048 -keyout bbb-ci.test.key -out bbb-ci.test.csr -subj "/C=CA/ST=BBB/L=BBB/O=BBB/OU=BBB/CN=bbb-ci.test" -addext "subjectAltName = DNS:bbb-ci.test"
|
|
openssl x509 -req -in bbb-ci.test.csr -CA bbb-dev-ca.crt -CAkey bbb-dev-ca.key -CAcreateserial -out bbb-ci.test.crt -days 825 -sha256 -passin file:/root/bbb-ci-ssl/bbb-dev-ca.pass -extfile bbb-ci.test.ext
|
|
cd
|
|
|
|
mkdir -p /local/certs/
|
|
cp /root/bbb-ci-ssl/bbb-dev-ca.crt /local/certs/
|
|
cat /root/bbb-ci-ssl/bbb-ci.test.crt > /local/certs/fullchain.pem
|
|
cat /root/bbb-ci-ssl/bbb-dev-ca.crt >> /local/certs/fullchain.pem
|
|
cat /root/bbb-ci-ssl/bbb-ci.test.key > /local/certs/privkey.pem
|
|
'
|
|
- name: Setup local repository
|
|
shell: bash
|
|
run: |
|
|
sudo -i <<EOF
|
|
set -e
|
|
apt install -yq dpkg-dev
|
|
cd /root && wget -nv http://ci.bbb.imdt.dev/cache-3rd-part-packages.tar
|
|
cp -r /home/runner/work/bigbluebutton/bigbluebutton/artifacts/ /artifacts/
|
|
cd /artifacts && tar xf /root/cache-3rd-part-packages.tar
|
|
cd /artifacts && dpkg-scanpackages . /dev/null | gzip -9c > Packages.gz
|
|
echo "deb [trusted=yes] file:/artifacts/ ./" >> /etc/apt/sources.list
|
|
EOF
|
|
- name: Prepare for install
|
|
run: |
|
|
sudo sh -c '
|
|
apt --purge -y remove apache2-bin
|
|
'
|
|
- name: Install BBB
|
|
run: |
|
|
sudo -i <<EOF
|
|
set -e
|
|
cd /root/ && wget -nv https://raw.githubusercontent.com/bigbluebutton/bbb-install/v2.7.x-release/bbb-install.sh -O bbb-install.sh
|
|
cat bbb-install.sh | sed "s|> /etc/apt/sources.list.d/bigbluebutton.list||g" | bash -s -- -v focal-27-dev -s bbb-ci.test -j -d /certs/
|
|
bbb-conf --salt bbbci
|
|
echo "NODE_EXTRA_CA_CERTS=/usr/local/share/ca-certificates/bbb-dev/bbb-dev-ca.crt" >> /usr/share/meteor/bundle/bbb-html5-with-roles.conf
|
|
sed -i "s/\"minify\": true,/\"minify\": false,/" /usr/share/etherpad-lite/settings.json
|
|
bbb-conf --restart
|
|
EOF
|
|
- name: Install test dependencies
|
|
working-directory: ./bigbluebutton-tests/playwright
|
|
run: |
|
|
sh -c '
|
|
npm install
|
|
npx playwright install-deps
|
|
npx playwright install
|
|
'
|
|
- name: Run tests
|
|
working-directory: ./bigbluebutton-tests/playwright
|
|
env:
|
|
NODE_EXTRA_CA_CERTS: /usr/local/share/ca-certificates/bbb-dev/bbb-dev-ca.crt
|
|
ACTIONS_RUNNER_DEBUG: true
|
|
BBB_URL: https://bbb-ci.test/bigbluebutton/api
|
|
BBB_SECRET: bbbci
|
|
run: npm run test-chromium-ci
|
|
- name: Run Firefox tests
|
|
working-directory: ./bigbluebutton-tests/playwright
|
|
if: ${{ contains(github.event.pull_request.labels.*.name, 'test Firefox')
|
|
|| contains(github.event.pull_request.labels.*.name, 'Test Firefox') }}
|
|
env:
|
|
NODE_EXTRA_CA_CERTS: /usr/local/share/ca-certificates/bbb-dev/bbb-dev-ca.crt
|
|
ACTIONS_RUNNER_DEBUG: true
|
|
BBB_URL: https://bbb-ci.test/bigbluebutton/api
|
|
BBB_SECRET: bbbci
|
|
# patch playwright's firefox so that it uses the system's root certificate authority
|
|
run: |
|
|
sh -c '
|
|
find $HOME/.cache/ms-playwright -name libnssckbi.so -exec rm {} \; -exec ln -s /usr/lib/x86_64-linux-gnu/pkcs11/p11-kit-trust.so {} \;
|
|
npm run test-firefox-ci
|
|
'
|
|
- if: always()
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: tests-report
|
|
path: |
|
|
bigbluebutton-tests/playwright/playwright-report
|
|
bigbluebutton-tests/playwright/test-results
|
|
- if: failure()
|
|
name: Prepare artifacts (configs and logs)
|
|
run: |
|
|
sudo -i <<EOF
|
|
mkdir configs
|
|
cp /etc/haproxy/haproxy.cfg configs/haproxy.cfg
|
|
touch /etc/bigbluebutton/turn-stun-servers.xml
|
|
cp /etc/bigbluebutton/turn-stun-servers.xml configs/turn-stun-servers.xml
|
|
cp /opt/freeswitch/etc/freeswitch/vars.xml configs/freeswitch_vars.xml
|
|
cp /opt/freeswitch/etc/freeswitch/sip_profiles/external.xml configs/freeswitch_sip_profiles_external.xml
|
|
cp /etc/bigbluebutton/bbb-apps-akka.conf configs/bbb-apps-akka.conf
|
|
cp /etc/bigbluebutton/bbb-fsesl-akka.conf configs/bbb-fsesl-akka.conf
|
|
cp /etc/bigbluebutton/bbb-html5.yml configs/bbb-html5.yml
|
|
cp /etc/bigbluebutton/bbb-web.properties configs/bbb-web.properties
|
|
cp /etc/bigbluebutton/bigbluebutton-release configs/bigbluebutton-release
|
|
cp /etc/bigbluebutton/turn-stun-servers.xml configs/turn-stun-servers.xml
|
|
cp /usr/local/bigbluebutton/bbb-webrtc-sfu/config/default.yml configs/bbb-webrtc-sfu-default.yml
|
|
cp /etc/bbb-webrtc-recorder/bbb-webrtc-recorder.yml configs/bbb-webrtc-recorder-default.yml
|
|
cp /usr/share/bigbluebutton/nginx/sip.nginx configs/nginx_sip.nginx
|
|
cp /etc/hosts /configs/hosts
|
|
mv configs /home/runner/work/bigbluebutton/bigbluebutton/configs
|
|
chmod a+r -R /home/runner/work/bigbluebutton/bigbluebutton/configs
|
|
bbb-conf --zip
|
|
ls -t /root/*.tar.gz | head -1 | xargs -I '{}' cp '{}' /home/runner/work/bigbluebutton/bigbluebutton/bbb-logs.tar.gz
|
|
EOF
|
|
- if: failure()
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: bbb-configs
|
|
path: configs
|
|
- if: failure()
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: bbb-logs
|
|
path: ./bbb-logs.tar.gz
|