-
Notifications
You must be signed in to change notification settings - Fork 0
73 lines (69 loc) · 2.03 KB
/
wdg.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
name: widgets
on:
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Cache Conda
uses: actions/cache@v1
with:
path: ~/.conda
key: ${{ runner.os }}-mconda-${{ hashFiles('**/configuration.yml') }}
restore-keys: |
${{ runner.os }}-conda-
- name: Set up Conda
uses: goanpeca/setup-miniconda@v1
with:
miniconda-version: "latest"
- name: Verify conda version
shell: bash
run: conda --version
- name: Checkout beakerx_widgets repo
uses: actions/checkout@v2
with:
repository: twosigma/beakerx_widgets
path: beakerx_widgets
- name: Checkout beakerx_base repo
uses: actions/checkout@v2
with:
repository: twosigma/beakerx_base
path: beakerx_base
- name: Checkout beakerx_tests repo
uses: actions/checkout@v2
with:
repository: twosigma/beakerx_tests
path: beakerx_tests
- name: Update conda package
shell: bash -l {0}
run: |
cd $GITHUB_WORKSPACE/beakerx_widgets
conda env create -n beakerx -f configuration.yml
- name: Build BeakerX Base
shell: bash -l {0}
run: |
conda activate beakerx
cd $GITHUB_WORKSPACE/beakerx_base
pip install -e .
- name: Build BeakerX Widgets
shell: bash -l {0}
run: |
conda activate beakerx
cd $GITHUB_WORKSPACE/beakerx_widgets/beakerx_widgets
pip install -r requirements.txt --verbose
beakerx install
- name: Run e2e tests (Widgets)
shell: bash -l {0}
run: |
cd $GITHUB_WORKSPACE/beakerx_tests/autotests
chmod +x gradlew
conda activate beakerx
python ci_tests.py --app=notebook --tst=python.Widget*
- name: Publish Test Report
if: always()
uses: scacap/action-surefire-report@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
report_paths: "**/test-results/test/TEST-*.xml"