global: codebase upgrade #498
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
# -*- coding: utf-8 -*- | |
# | |
# Copyright (C) 2020-2022 CERN. | |
# | |
# Invenio App RDM is free software; you can redistribute it and/or modify it | |
# under the terms of the MIT License; see LICENSE file for more details. | |
name: CI | |
on: | |
push: | |
branches: main | |
pull_request: | |
branches: main | |
schedule: | |
# * is a special character in YAML so you have to quote this string | |
- cron: '0 4 * * 6' | |
workflow_dispatch: | |
inputs: | |
reason: | |
description: 'Reason' | |
required: false | |
default: 'Manual trigger' | |
jobs: | |
Tests: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
#python-version: [2.7, 3.6] Currently failing with isort | |
python-version: [3.6] | |
steps: | |
- name: Install FFmpeg | |
run: | | |
sudo apt update | |
sudo apt-get install ffmpeg | |
- name: Install ldap dependencies | |
run: | | |
sudo apt-get install libsasl2-dev python-dev libldap2-dev libssl-dev | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Use Node.js 14.x | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 14.x | |
- name: Install global Node packages | |
run: | | |
./scripts/setup-npm.sh | |
rm -f package-lock.json | |
- name: Generate dependencies | |
run: | | |
python -m pip install --upgrade "pip>=20,<21" "setuptools>=40,<46" py | |
python -m pip install wheel coveralls requirements-builder configparser | |
pip freeze | |
cat requirements.pinned.txt > .ci-${{ matrix.python-version }}-requirements.txt | |
- name: Cache pip | |
uses: actions/cache@v2 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip-${{ hashFiles('.ci-${{ matrix.python-version }}-requirements.txt') }} | |
- name: Install dependencies | |
run: | | |
export VIRTUAL_ENV=${pythonLocation} | |
./scripts/bootstrap .ci-${{ matrix.python-version }}-requirements.txt | |
pip freeze | |
docker --version | |
docker-compose --version | |
- name: Run tests | |
run: | | |
docker-compose up -d | |
./run-tests.sh |