mirror of https://github.com/zulip/zulip.git
80 lines
2.9 KiB
YAML
80 lines
2.9 KiB
YAML
|
name: Zulip Production Suite
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
pull_request:
|
||
|
|
||
|
defaults:
|
||
|
run:
|
||
|
shell: bash
|
||
|
|
||
|
jobs:
|
||
|
production_build:
|
||
|
name: Bionic Production Build
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
# This docker image was created by a generated Dockerfile at:
|
||
|
# tools/ci/images/bionic/Dockerfile
|
||
|
# Bionic ships with Python 3.6.
|
||
|
container: mepriyank/actions:bionic
|
||
|
steps:
|
||
|
- name: Add required permissions
|
||
|
run: |
|
||
|
# The checkout actions doesn't clone to ~/zulip or allow
|
||
|
# us to use the path option to clone outside the current
|
||
|
# /__w/zulip/zulip directory. Since this directory is owned
|
||
|
# by root we need to change it's ownership to allow the
|
||
|
# github user to clone the code here.
|
||
|
# Note: /__w/ is a docker volume mounted to $GITHUB_WORKSPACE
|
||
|
# which is /home/runner/work/.
|
||
|
sudo chown -R github .
|
||
|
|
||
|
# This is the GitHub Actions specific cache directory the
|
||
|
# the current github user must be able to access for the
|
||
|
# cache action to work. It is owned by root currently.
|
||
|
sudo chmod -R 0777 /__w/_temp/
|
||
|
|
||
|
- uses: actions/checkout@v2
|
||
|
|
||
|
- name: Create cache directories
|
||
|
run: |
|
||
|
dirs=(/srv/zulip-{npm,venv,emoji}-cache)
|
||
|
sudo mkdir -p "${dirs[@]}"
|
||
|
sudo chown -R github "${dirs[@]}"
|
||
|
|
||
|
- name: Restore node_modules cache
|
||
|
uses: actions/cache@v2
|
||
|
with:
|
||
|
path: /srv/zulip-npm-cache
|
||
|
key: v1-yarn-deps-${{ github.job }}-${{ hashFiles('package.json') }}-${{ hashFiles('yarn.lock') }}
|
||
|
restore-keys: v1-yarn-deps-${{ github.job }}
|
||
|
|
||
|
- name: Restore python cache
|
||
|
uses: actions/cache@v2
|
||
|
with:
|
||
|
path: /srv/zulip-venv-cache
|
||
|
key: v1-venv-${{ github.job }}-${{ hashFiles('requirements/thumbor-dev.txt') }}-${{ hashFiles('requirements/dev.txt') }}
|
||
|
restore-keys: v1-venv-${{ github.job }}
|
||
|
|
||
|
- name: Restore emoji cache
|
||
|
uses: actions/cache@v2
|
||
|
with:
|
||
|
path: /srv/zulip-emoji-cache
|
||
|
key: v1-emoji-${{ github.job }}-${{ hashFiles('tools/setup/emoji/emoji_map.json') }}-${{ hashFiles('tools/setup/emoji/build_emoji') }}-${{ hashFiles('tools/setup/emoji/emoji_setup_utils.py') }}-${{ hashFiles('tools/setup/emoji/emoji_names.py') }}-${{ hashFiles('package.json') }}
|
||
|
restore-keys: v1-emoji-${{ github.job }}
|
||
|
|
||
|
- name: Do Bionic hack
|
||
|
run: |
|
||
|
# Temporary hack till `sudo service redis-server start` gets fixes in Bionic. See
|
||
|
# https://chat.zulip.org/#narrow/stream/3-backend/topic/Ubuntu.20bionic.20CircleCI
|
||
|
sudo sed -i '/^bind/s/bind.*/bind 0.0.0.0/' /etc/redis/redis.conf
|
||
|
|
||
|
- name: Build production tarball
|
||
|
run: mispipe "./tools/ci/production-build 2>&1" ts
|
||
|
|
||
|
- name: Upload production build artifacts for install jobs
|
||
|
uses: actions/upload-artifact@v2
|
||
|
with:
|
||
|
name: production-tarball
|
||
|
path: /tmp/production-build
|