feat(e2e): add a job to run e2e on linux os #31
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Electron Playwright Tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
env: | |
AWS_S3_BUCKET: "mattermost-cypress-report" | |
BRANCH: ${{ github.ref }} | |
BUILD_SUFFIX: 'desktop-pr' | |
JIRA_PROJECT_KEY: 'MM' | |
# MM_TEST_SERVER_URL: "http://localhost:8065" | |
MM_TEST_SERVER_URL: "https://mattermost-pr-24140.test.mattermost.cloud" | |
PULL_REQUEST_BASE_URL: "https://github.com/mattermost/desktop/pull/" | |
TYPE: ${{ github.event_name == 'pull_request' && 'PR' || '' }} | |
ZEPHYR_ENVIRONMENT_NAME: 'Desktop app' | |
ZEPHYR_FOLDER_ID: "3256491" | |
TEST_CYCLE_LINK_PREFIX: ${{ secrets.MM_DESKTOP_E2E_TEST_CYCLE_LINK_PREFIX }} | |
AWS_ACCESS_KEY_ID: ${{ secrets.MM_DESKTOP_E2E_AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.MM_DESKTOP_E2E_AWS_SECRET_ACCESS_KEY }} | |
WEBHOOK_URL: ${{ secrets.MM_DESKTOP_E2E_WEBHOOK_URL }} | |
ZEPHYR_API_KEY: ${{ secrets.MM_DESKTOP_E2E_ZEPHYR_API_KEY }} | |
jobs: | |
e2e-linux: | |
runs-on: ubuntu-latest | |
steps: | |
- name: ci/checkout-repo | |
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0 | |
- name: ci/setup-node | |
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0 | |
with: | |
node-version-file: "package.json" | |
cache: "npm" | |
cache-dependency-path: package-lock.json | |
- name: Install dependencies | |
env: | |
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 0 | |
run: | | |
wget -qO - https://download.opensuse.org/repositories/Emulators:/Wine:/Debian/xUbuntu_22.04/Release.key | sudo apt-key add - | |
wget -qO /usr/local/bin/yq https://github.com/mikefarah/yq/releases/download/v4.20.1/yq_linux_amd64 && chmod a+x /usr/local/bin/yq | |
sudo apt-get update || true && sudo apt-get install -y ca-certificates libxtst-dev libpng++-dev gcc-aarch64-linux-gnu g++-aarch64-linux-gnu jq icnsutils graphicsmagick tzdata | |
npm ci | |
- name: Set Environment Variables | |
run: | | |
if [ "${{ github.event_name }}" == "pull_request" ]; then | |
echo "BRANCH=${{ github.event.pull_request.head.ref }}" >> $GITHUB_ENV | |
echo "BUILD_SUFFIX=desktop-pr" >> $GITHUB_ENV | |
elif [ "${{ github.event_name }}" == "release" ]; then | |
echo "BRANCH=${{ github.ref }}" >> $GITHUB_ENV | |
echo "BUILD_SUFFIX=desktop-release" >> $GITHUB_ENV | |
echo "ZEPHYR_ENABLE=true" >> $GITHUB_ENV | |
elif [ "${{ github.event_name }}" == "schedule" ]; then | |
echo "BRANCH=${{ github.ref }}" >> $GITHUB_ENV | |
echo "BUILD_SUFFIX=desktop-nightly" >> $GITHUB_ENV | |
fi | |
echo "BUILD_ID=${{ github.run_id }}-${BUILD_SUFFIX}-${{ runner.os }}" >> $GITHUB_ENV | |
echo "BUILD_TAG=${GITHUB_SHA::7}" >> $GITHUB_ENV | |
echo "PULL_REQUEST=${PULL_REQUEST_BASE_URL}${{ github.event.pull_request.number }}" >> $GITHUB_ENV | |
if [ -n "${ZEPHYR_ENABLE}" ]; then | |
echo "ZEPHYR_ENABLE=${ZEPHYR_ENABLE}" >> $GITHUB_ENV | |
fi | |
- name: Checkout mattermost | |
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0 | |
with: | |
repository: mattermost/mattermost | |
path: mattermost | |
- name: Run mattermsot server | |
run: | | |
LATEST_RELEASE_TAG=$(curl -L -s https://api.github.com/repos/mattermost/mattermost-server/releases/latest | jq -r '.tag_name') | |
LATEST_RELEASE_TAG="${LATEST_RELEASE_TAG#v}" | |
cd mattermost/e2e-tests | |
echo "SERVER_IMAGE=mattermost/mattermost-enterprise-edition:$LATEST_RELEASE_TAG" >.ci/env | |
make start-server && make prepare-server | |
- name: Run Playwright tests (Ubuntu OS) | |
run: | | |
export DISPLAY=:99 | |
Xvfb $DISPLAY -screen 0 1024x768x24 > /dev/null 2>&1 & | |
npm run test:e2e || true # making job pass even if the tests fail due to flakyness | |
npm run test:e2e:send-report | |
e2e-macos: | |
runs-on: macos-12 | |
steps: | |
- name: ci/checkout-repo | |
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0 | |
- name: ci/setup-node | |
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0 | |
with: | |
node-version-file: "package.json" | |
cache: "npm" | |
cache-dependency-path: package-lock.json | |
- name: Setup Go environment | |
uses: actions/[email protected] | |
with: | |
go-version: '1.20' | |
- name: ci/install-dependencies | |
env: | |
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1 | |
run: | | |
brew install yq | |
jq '.mac.target=["zip"]' electron-builder.json | jq '.mac.gatekeeperAssess=false' > /tmp/electron-builder.json && cp /tmp/electron-builder.json . | |
npm ci | |
- name: Setup Docker on macOS | |
run: | | |
brew install docker docker-compose | |
colima start | |
mkdir -p ~/.docker/cli-plugins | |
ln -sfn /usr/local/opt/docker-compose/bin/docker-compose ~/.docker/cli-plugins/docker-compose | |
- name: Set Environment Variables | |
run: | | |
if [ "${{ github.event_name }}" == "pull_request" ]; then | |
echo "BRANCH=${{ github.event.pull_request.head.ref }}" >> $GITHUB_ENV | |
echo "BUILD_SUFFIX=desktop-pr" >> $GITHUB_ENV | |
elif [ "${{ github.event_name }}" == "release" ]; then | |
echo "BRANCH=${{ github.ref }}" >> $GITHUB_ENV | |
echo "BUILD_SUFFIX=desktop-release" >> $GITHUB_ENV | |
echo "ZEPHYR_ENABLE=true" >> $GITHUB_ENV | |
elif [ "${{ github.event_name }}" == "schedule" ]; then | |
echo "BRANCH=${{ github.ref }}" >> $GITHUB_ENV | |
echo "BUILD_SUFFIX=desktop-nightly" >> $GITHUB_ENV | |
fi | |
echo "BUILD_ID=${{ github.run_id }}-${BUILD_SUFFIX}-${{ runner.os }}" >> $GITHUB_ENV | |
echo "BUILD_TAG=${GITHUB_SHA::7}" >> $GITHUB_ENV | |
echo "PULL_REQUEST=${PULL_REQUEST_BASE_URL}${{ github.event.pull_request.number }}" >> $GITHUB_ENV | |
if [ -n "${ZEPHYR_ENABLE}" ]; then | |
echo "ZEPHYR_ENABLE=${ZEPHYR_ENABLE}" >> $GITHUB_ENV | |
fi | |
- name: Checkout mattermost | |
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0 | |
with: | |
repository: mattermost/mattermost | |
path: mattermost | |
ref: master | |
- name: Run mattermsot server & Playwright tests (macOS) | |
run: | | |
LATEST_RELEASE_TAG=$(curl -L -s https://api.github.com/repos/mattermost/mattermost-server/releases/latest | jq -r '.tag_name') | |
LATEST_RELEASE_TAG="${LATEST_RELEASE_TAG#v}" | |
cd mattermost/e2e-tests | |
echo "SERVER_IMAGE=mattermost/mattermost-enterprise-edition:$LATEST_RELEASE_TAG" >.ci/env | |
make start-server && make prepare-server | |
- name: Run Playwright tests (macOS) | |
run: | | |
npm run test:e2e || true # making job pass even if the tests fail due to flakyness | |
npm run test:e2e:send-report | |
e2e-windows: | |
runs-on: windows-latest | |
steps: | |
- name: ci/checkout-repo | |
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0 | |
- name: ci/setup-node | |
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0 | |
with: | |
node-version-file: "package.json" | |
cache: "npm" | |
cache-dependency-path: package-lock.json | |
- name: ci/cache-node-modules | |
id: cache-node-modules | |
uses: actions/cache@627f0f41f6904a5b1efbaed9f96d9eb58e92e920 # v3.2.4 | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-build-node-modules-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-build-node-modules | |
${{ runner.os }}-build- | |
${{ runner.os }}- | |
- name: ci/install-node-gyp | |
if: steps.cache-node-modules.outputs.cache-hit != 'true' | |
env: | |
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1 | |
run: | | |
choco install yq --version 4.15.1 -y | |
npm i -g node-gyp | |
node-gyp install | |
node-gyp install --devdir="C:\Users\runneradmin\.electron-gyp" --target=$(jq -r .devDependencies.electron package.json) --dist-url="https://electronjs.org/headers" | |
node-gyp install --devdir="C:\Users\runneradmin\.electron-gyp" --target=$(jq -r .devDependencies.electron package.json) --dist-url="https://electronjs.org/headers" --arch arm64 | |
node-gyp install --devdir="C:\Users\runneradmin\.electron-gyp" --target=$(jq -r .devDependencies.electron package.json) --dist-url="https://electronjs.org/headers" --arch ia32 | |
- name: Set Environment Variables | |
shell: bash | |
run: | | |
if [ "${{ github.event_name }}" == "pull_request" ]; then | |
echo "BRANCH=${{ github.event.pull_request.head.ref }}" >> $GITHUB_ENV | |
echo "BUILD_SUFFIX=desktop-pr" >> $GITHUB_ENV | |
elif [ "${{ github.event_name }}" == "release" ]; then | |
echo "BRANCH=${{ github.ref }}" >> $GITHUB_ENV | |
echo "BUILD_SUFFIX=desktop-release" >> $GITHUB_ENV | |
echo "ZEPHYR_ENABLE=true" >> $GITHUB_ENV | |
elif [ "${{ github.event_name }}" == "schedule" ]; then | |
echo "BRANCH=${{ github.ref }}" >> $GITHUB_ENV | |
echo "BUILD_SUFFIX=desktop-nightly" >> $GITHUB_ENV | |
fi | |
echo "BUILD_ID=${{ github.run_id }}-${BUILD_SUFFIX}-${{ runner.os }}" >> $GITHUB_ENV | |
echo "BUILD_TAG=${GITHUB_SHA::7}" >> $GITHUB_ENV | |
echo "PULL_REQUEST=${PULL_REQUEST_BASE_URL}${{ github.event.pull_request.number }}" >> $GITHUB_ENV | |
if [ -n "${ZEPHYR_ENABLE}" ]; then | |
echo "ZEPHYR_ENABLE=${ZEPHYR_ENABLE}" >> $GITHUB_ENV | |
fi | |
- name: Run Playwright tests (Windows OS) | |
run: | | |
npm run test:e2e || true | |
npm run test:e2e:send-report | |
shell: bash |