-
Notifications
You must be signed in to change notification settings - Fork 0
65 lines (53 loc) · 1.35 KB
/
CI.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
name: CI
on:
push:
branches: [main]
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
# Checks-out your repository under $GITHUB_WORKSPACE
- name: Checkout
uses: actions/checkout@v3
# Set up Python 3.9 environment
- name: Set up Python 3.9
uses: actions/setup-python@v1
with:
python-version: "3.9"
- name: Install invenio-cli
run: |
python -m pip install --upgrade pip
pip install pipenv invenio-cli
- name: Install RDM
run: |
pip install invenio-cli
invenio-cli install
# Cache docker images so they don't rebuild every time
- name: Cache Local Images
id: local-images
uses: actions/cache@v3
with:
path: /var/lib/docker/
key: local-docker-directory
- name: Build Images
run: |
touch ./.env
docker compose up -d --build
- name: Set up services
run: |
invenio-cli services setup
- name: Start services
if: always()
run: |
bash ./kcr-startup.sh
- name: Run unit tests
run: cd site && pytest
- name: Stop services
if: always()
run: |
bash ./kcr-shutdown.sh
docker compose down