forked from inveniosoftware/invenio-records-rest
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
closes inveniosoftware#308
- Loading branch information
Showing
13 changed files
with
190 additions
and
119 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: Publish | ||
|
||
on: | ||
push: | ||
tags: | ||
- v* | ||
|
||
jobs: | ||
Publish: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.7 | ||
|
||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install setuptools wheel | ||
- name: Build package | ||
# Remove `compile_catalog` if the package has no translations. | ||
run: | | ||
python setup.py compile_catalog sdist bdist_wheel | ||
- name: Publish on PyPI | ||
uses: pypa/[email protected] | ||
with: | ||
user: __token__ | ||
# The token is provided by the inveniosoftware organization | ||
password: ${{ secrets.pypi_token }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,120 @@ | ||
# -*- coding: utf-8 -*- | ||
# | ||
# This file is part of Invenio. | ||
# Copyright (C) 2020 CERN. | ||
# | ||
# Invenio 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: master | ||
pull_request: | ||
branches: master | ||
schedule: | ||
# * is a special character in YAML so you have to quote this string | ||
- cron: '0 3 * * 6' | ||
workflow_dispatch: | ||
inputs: | ||
reason: | ||
description: 'Reason' | ||
required: false | ||
default: 'Manual trigger' | ||
|
||
jobs: | ||
Tests: | ||
runs-on: ubuntu-20.04 | ||
strategy: | ||
matrix: | ||
python-version: [3.6, 3.7, 3.8, 3.9] | ||
requirements-level: [min, pypi] | ||
cache-service: [redis] | ||
db-service: [postgresql9, postgresql11, mysql5, mysql8] | ||
mq-service: [rabbitmq, redis] | ||
search-service: [elasticsearch6, elasticsearch7] | ||
exclude: | ||
- python-version: 3.8 | ||
requirements-level: min | ||
|
||
- python-version: 3.9 | ||
requirements-level: min | ||
|
||
- db-service: postgresql11 | ||
python-version: 3.6 | ||
|
||
- db-service: mysql8 | ||
python-version: 3.6 | ||
|
||
- search-service: elasticsearch7 | ||
python-version: 3.6 | ||
|
||
- search-service: elasticsearch6 | ||
db-service: postgresql11 | ||
|
||
- search-service: elasticsearch6 | ||
db-service: mysql8 | ||
|
||
- search-service: elasticsearch7 | ||
db-service: postgresql9 | ||
|
||
- search-service: elasticsearch7 | ||
db-service: mysql5 | ||
|
||
include: | ||
- db-service: postgresql9 | ||
DB_EXTRAS: "postgresql" | ||
|
||
- db-service: postgresql11 | ||
DB_EXTRAS: "postgresql" | ||
|
||
- db-service: mysql5 | ||
DB_EXTRAS: "mysql" | ||
|
||
- db-service: mysql8 | ||
DB_EXTRAS: "mysql" | ||
|
||
- search-service: elasticsearch6 | ||
SEARCH_EXTRAS: "elasticsearch6" | ||
|
||
- search-service: elasticsearch7 | ||
SEARCH_EXTRAS: "elasticsearch7" | ||
|
||
env: | ||
CACHE: ${{ matrix.cache-service }} | ||
DB: ${{ matrix.db-service }} | ||
MQ: ${{ matrix.mq-service }} | ||
SEARCH: ${{ matrix.search-service }} | ||
EXTRAS: all,${{ matrix.DB_EXTRAS }},${{ matrix.SEARCH_EXTRAS }} | ||
steps: | ||
- 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: Generate dependencies | ||
run: | | ||
python -m pip install --upgrade pip setuptools py wheel requirements-builder | ||
requirements-builder -e "$EXTRAS" --level=${{ matrix.requirements-level }} setup.py > .${{ matrix.requirements-level }}-${{ matrix.python-version }}-requirements.txt | ||
- name: Cache pip | ||
uses: actions/cache@v2 | ||
with: | ||
path: ~/.cache/pip | ||
key: ${{ runner.os }}-pip-${{ hashFiles('.${{ matrix.requirements-level }}-${{ matrix.python-version }}-requirements.txt') }} | ||
|
||
- name: Install dependencies | ||
run: | | ||
pip install -r .${{ matrix.requirements-level }}-${{ matrix.python-version }}-requirements.txt | ||
pip install ".[$EXTRAS]" | ||
pip freeze | ||
docker --version | ||
docker-compose --version | ||
- name: Run tests | ||
run: | | ||
./run-tests.sh |
This file was deleted.
Oops, something went wrong.
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,29 @@ | ||
#!/usr/bin/env sh | ||
#!/usr/bin/env bash | ||
# -*- coding: utf-8 -*- | ||
# | ||
# This file is part of Invenio. | ||
# Copyright (C) 2015-2020 CERN. | ||
# Copyright (C) 2020 CERN. | ||
# | ||
# Invenio is free software; you can redistribute it and/or modify it | ||
# under the terms of the MIT License; see LICENSE file for more details. | ||
|
||
python -m check_manifest --ignore ".travis-*" && \ | ||
python -m sphinx.cmd.build -qnNW docs docs/_build/html && \ | ||
python -m pytest && \ | ||
python -m sphinx.cmd.build -qnNW -b doctest docs docs/_build/doctest | ||
# Quit on errors | ||
set -o errexit | ||
|
||
# Quit on unbound symbols | ||
set -o nounset | ||
|
||
# Always bring down docker services | ||
function cleanup() { | ||
eval "$(docker-services-cli down --env)" | ||
} | ||
trap cleanup EXIT | ||
|
||
|
||
python -m check_manifest --ignore ".*-requirements.txt" | ||
python -m sphinx.cmd.build -qnNW docs docs/_build/html | ||
eval "$(docker-services-cli up --db ${DB:-postgresql} --search ${SEARCH:-elasticsearch} --cache ${CACHE:-redis} --mq ${MQ:-rabbitmq} --env)" | ||
python -m pytest | ||
tests_exit_code=$? | ||
python -m sphinx.cmd.build -qnNW -b doctest docs docs/_build/doctest | ||
exit "$tests_exit_code" |
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
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
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
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
Oops, something went wrong.