-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fixes problems with connection problems for ApiHarvestConfig. * Disables oai harvesting tasks. Should be done in a crontab job. * Fixes api blueprint configuration.
- Loading branch information
Showing
10 changed files
with
69 additions
and
59 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,12 +6,12 @@ jobs: | |
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
dependencies: ['locked', 'deploy'] | ||
dependencies: ['dev', 'deploy'] | ||
steps: | ||
- name: Cancel Previous Runs | ||
uses: styfle/[email protected] | ||
with: | ||
access_token: ${{ github.token }} | ||
# - name: Cancel Previous Runs | ||
# uses: styfle/[email protected] | ||
# with: | ||
# access_token: ${{ github.token }} | ||
|
||
- uses: actions/checkout@v2 | ||
|
||
|
@@ -42,22 +42,16 @@ jobs: | |
~/.npm | ||
key: ${{ runner.os }}-pip-venv-${{ hashFiles('**/poetry.lock') }} | ||
|
||
- name: Bootstrap locked | ||
if: ${{ matrix.dependencies == 'locked' }} | ||
- name: Bootstrap dev | ||
if: ${{ matrix.dependencies == 'dev' }} | ||
run: | | ||
pip install "poetry<1.1.0" | ||
poetry run bootstrap --ci | ||
- name: Bootstrap deploy | ||
if: ${{ matrix.dependencies == 'deploy' }} | ||
run: | | ||
poetry run bootstrap --ci --deploy E2E=yes | ||
- name: Update pip and coveralls | ||
run: | | ||
poetry run pip install --upgrade pip | ||
poetry run pip install --upgrade coveralls | ||
- name: Run Test | ||
run: poetry run run-tests | ||
|
||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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 |
---|---|---|
|
@@ -30,4 +30,4 @@ | |
|
||
from __future__ import absolute_import, print_function | ||
|
||
__version__ = '0.4.0' | ||
__version__ = '0.5.0' |
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