Fix CSS using the new Lumino classes #158
Workflow file for this run
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
name: Conda build (Ubuntu, notebook) | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 1.11 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.11 | |
- name: Cache gradle | |
uses: actions/cache@v2 | |
with: | |
path: ~/.gradle/caches | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }} | |
restore-keys: | | |
${{ runner.os }}-gradle | |
- 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: conda-incubator/setup-miniconda@v2 | |
with: | |
miniconda-version: "latest" | |
- name: Verify conda version | |
shell: bash | |
run: conda --version | |
- name: Checkout beakerx_kernel_base repo | |
uses: actions/checkout@v2 | |
with: | |
repository: twosigma/beakerx_kernel_base | |
path: beakerx_kernel_base | |
- name: Checkout beakerx_base repo | |
uses: actions/checkout@v2 | |
with: | |
repository: twosigma/beakerx_base | |
ref: master | |
path: beakerx_base | |
- name: Checkout beakerx_kernel_groovy repo | |
uses: actions/checkout@v2 | |
with: | |
repository: twosigma/beakerx_kernel_groovy | |
path: beakerx_kernel_groovy | |
- name: Checkout beakerx_tests repo | |
uses: actions/checkout@v2 | |
with: | |
repository: twosigma/beakerx_tests | |
path: beakerx_tests | |
- name: Build BeakerX Kernel Base | |
run: | | |
cd $GITHUB_WORKSPACE/beakerx_kernel_base | |
chmod +x gradlew | |
./gradlew install | |
- name: Update conda package | |
shell: bash -l {0} | |
run: | | |
cd $GITHUB_WORKSPACE/beakerx_tests/dev_scripts | |
conda env create -n beakerx -f configuration.yml | |
- name: Build Groovy Kernel | |
shell: bash -l {0} | |
run: | | |
conda activate beakerx | |
cd $GITHUB_WORKSPACE/beakerx_kernel_groovy/groovy-dist | |
pip install -r requirements.txt --verbose | |
beakerx_kernel_groovy install | |
- 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 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 | |
pip install psutil | |
python ci_tests.py --app=notebook --tst=*.Widget* |