-
Notifications
You must be signed in to change notification settings - Fork 34
84 lines (72 loc) · 2.24 KB
/
tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# -*- 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