-
Notifications
You must be signed in to change notification settings - Fork 0
103 lines (86 loc) · 2.45 KB
/
build.yaml
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
name: Build and install extension
on:
push:
branches: main
pull_request:
branches: '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install node
uses: actions/setup-node@v4
with:
node-version: '20'
# cache: 'yarn'
# - name: Install yarn
# run: |
# npm install -g corepack
# corepack enable
# yarn -v
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
architecture: 'x64'
- name: Setup pip cache
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: pip-3.11-${{ hashFiles('package.json') }}
restore-keys: |
pip-3.11-
pip-
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
shell: bash
- name: Setup yarn cache
uses: actions/cache@v2
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
yarn-
- name: Install Python dependencies
run: python -m pip install -r requirements.txt
shell: bash
- name: Install JS Dependencies
run: jlpm
shell: bash
# - name: Build the Extension
# run: jlpm run build
# shell: bash
- name: Install Extension
run: |
set -eux
python -m pip install .
shell: bash
- name: Enable Server Extension
run: |
set -eux
jupyter server extension enable zenodo_jupyterlab.server
shell: bash
- name: Run Pytest
env:
CI_ZENODO_API_KEY: ${{ secrets.CI_ZENODO_API_KEY }}
run: pytest zenodo_jupyterlab/server/tests
shell: bash
# install_extension:
# runs-on: ubuntu-latest
# needs: build
# steps:
# - uses: actions/checkout@v3
# - name: Download artifact
# uses: actions/download-artifact@v3
# with:
# name: python-dependencies
# path: .
# - run: |
# set -eux
# pip list
# export PATH="$HOME/.local/bin:$PATH"
# jupyterlab --version
# python -m pip install .