signal-desktop/.github/workflows/ci.yml

204 lines
5.4 KiB
YAML
Raw Normal View History

2021-01-22 18:17:15 +00:00
# Copyright 2020-2021 Signal Messenger, LLC
2020-10-30 20:34:04 +00:00
# SPDX-License-Identifier: AGPL-3.0-only
2020-03-18 17:50:20 +00:00
name: CI
2021-12-23 18:50:07 +00:00
on:
push:
branches:
- development
- '[0-9]+.[0-9]+.x'
pull_request:
2020-03-18 17:50:20 +00:00
jobs:
lint:
runs-on: ubuntu-latest
steps:
- run: lsb_release -a
- run: uname -a
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
2021-12-09 08:06:04 +00:00
node-version: '16.9.1'
2021-04-05 20:37:23 +00:00
- run: npm install -g yarn@1.22.10
- name: Cache Desktop node_modules
id: cache-desktop-modules
uses: actions/cache@v2
with:
path: node_modules
2021-11-23 22:00:44 +00:00
key: ${{ runner.os }}-${{ hashFiles('package.json', 'yarn.lock', 'patches/**') }}
- name: Install Desktop node_modules
if: steps.cache-desktop-modules.outputs.cache-hit != 'true'
run: yarn install --frozen-lockfile
- run: yarn generate
- run: yarn lint
- run: yarn lint-deps
# - run: yarn lint-license-comments
- run: git diff --exit-code
2020-03-18 17:50:20 +00:00
macos:
needs: lint
2021-12-06 21:50:49 +00:00
runs-on: macos-11.0
if: github.ref == 'refs/heads/development' || github.ref == 'refs/heads/master'
2020-03-18 17:50:20 +00:00
steps:
- run: uname -a
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
2020-03-18 17:50:20 +00:00
with:
2021-12-09 08:06:04 +00:00
node-version: '16.9.1'
2021-04-05 20:37:23 +00:00
- run: npm install -g yarn@1.22.10
- name: Cache Desktop node_modules
id: cache-desktop-modules
uses: actions/cache@v2
with:
path: node_modules
2021-11-23 22:00:44 +00:00
key: ${{ runner.os }}-${{ hashFiles('package.json', 'yarn.lock', 'patches/**') }}
- name: Install Desktop node_modules
if: steps.cache-desktop-modules.outputs.cache-hit != 'true'
run: yarn install --frozen-lockfile
2020-03-18 17:50:20 +00:00
- run: yarn generate
- run: yarn prepare-beta-build
- run: yarn build
2021-12-17 17:50:42 +00:00
env:
DISABLE_INSPECT_FUSE: on
2021-12-03 22:49:15 +00:00
- name: Rebuild native modules for x64
run: yarn electron:install-app-deps
2020-03-18 17:50:20 +00:00
- run: yarn test-node
- run: yarn test-electron
2021-12-09 08:06:04 +00:00
- run: yarn test-release
2020-03-18 17:50:20 +00:00
env:
NODE_ENV: production
linux:
needs: lint
2020-03-18 17:50:20 +00:00
runs-on: ubuntu-latest
steps:
- run: lsb_release -a
2020-03-18 17:50:20 +00:00
- run: uname -a
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
2020-03-18 17:50:20 +00:00
with:
2021-12-09 08:06:04 +00:00
node-version: '16.9.1'
2020-03-18 17:50:20 +00:00
- run: sudo apt-get install xvfb
2021-04-05 20:37:23 +00:00
- run: npm install -g yarn@1.22.10
- name: Cache Desktop node_modules
id: cache-desktop-modules
uses: actions/cache@v2
with:
path: node_modules
2021-11-23 22:00:44 +00:00
key: ${{ runner.os }}-${{ hashFiles('package.json', 'yarn.lock', 'patches/**') }}
- name: Install Desktop node_modules
if: steps.cache-desktop-modules.outputs.cache-hit != 'true'
run: yarn install --frozen-lockfile
2020-03-18 17:50:20 +00:00
- run: yarn generate
- run: yarn prepare-beta-build
- run: yarn build
2021-12-17 17:50:42 +00:00
env:
DISABLE_INSPECT_FUSE: on
2020-03-18 17:50:20 +00:00
- run: xvfb-run --auto-servernum yarn test-node
- run: xvfb-run --auto-servernum yarn test-electron
env:
LANG: en_US
LANGUAGE: en_US
2021-12-09 08:06:04 +00:00
- run: xvfb-run --auto-servernum yarn test-release
2020-03-18 17:50:20 +00:00
env:
NODE_ENV: production
windows:
needs: lint
2020-03-18 17:50:20 +00:00
runs-on: windows-latest
steps:
- run: systeminfo
- run: git config --global core.autocrlf false
- run: git config --global core.eol lf
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
2020-03-18 17:50:20 +00:00
with:
2021-12-09 08:06:04 +00:00
node-version: '16.9.1'
2021-04-05 20:37:23 +00:00
- run: npm install -g yarn@1.22.10
- name: Cache Desktop node_modules
id: cache-desktop-modules
uses: actions/cache@v2
with:
path: node_modules
2021-11-23 22:00:44 +00:00
key: ${{ runner.os }}-${{ hashFiles('package.json', 'yarn.lock', 'patches/**') }}
- name: Install Desktop node_modules
if: steps.cache-desktop-modules.outputs.cache-hit != 'true'
run: yarn install --frozen-lockfile
2020-03-18 17:50:20 +00:00
- run: yarn generate
- run: yarn test-node
- run: copy package.json temp.json
- run: del package.json
- run: type temp.json | findstr /v certificateSubjectName | findstr /v certificateSha1 > package.json
- run: yarn prepare-beta-build
- run: yarn build
2021-12-17 17:50:42 +00:00
env:
DISABLE_INSPECT_FUSE: on
2021-12-09 08:06:04 +00:00
- run: yarn test-electron
- run: yarn test-release
2020-03-18 17:50:20 +00:00
env:
SIGNAL_ENV: production
2022-01-31 22:01:34 +00:00
storage-service:
needs: lint
runs-on: ubuntu-latest
if: ${{ github.repository == 'signalapp/Signal-Desktop-Private' }}
steps:
- name: Get system specs
run: lsb_release -a
- name: Get other system specs
run: uname -a
- name: Clone Desktop repo
uses: actions/checkout@v2
- name: Setup node.js
uses: actions/setup-node@v2
with:
node-version: '16.9.1'
- name: Install global dependencies
run: npm install -g yarn@1.22.10
- name: Install xvfb
run: sudo apt-get install xvfb
- name: Cache Desktop node_modules
id: cache-desktop-modules
uses: actions/cache@v2
with:
path: node_modules
key: ${{ runner.os }}-${{ hashFiles('package.json', 'yarn.lock', 'patches/**') }}
- name: Install Desktop node_modules
if: steps.cache-desktop-modules.outputs.cache-hit != 'true'
run: yarn install --frozen-lockfile
- name: Build typescript
run: yarn generate
- name: Bundle
run: yarn build:webpack
- name: Setup hosts
run: sudo echo "127.0.0.1 mock.signal.org" | sudo tee -a /etc/hosts
- name: Run storage service tests
run: |
set -o pipefail
xvfb-run --auto-servernum yarn test-mock
2022-01-31 22:01:34 +00:00
timeout-minutes: 10
env:
NODE_ENV: production
DEBUG: mock:test-storage