Skip to content

Commit

Permalink
Use dev branch for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
martinRenou committed Sep 26, 2023
1 parent fa10e93 commit 95affc1
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ jobs:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
restore-keys: |
${{ runner.os }}-gradle
${{ 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-
${{ runner.os }}-conda-
- name: Set up Conda
uses: conda-incubator/setup-miniconda@v2
with:
Expand All @@ -51,7 +51,8 @@ jobs:
- name: Checkout beakerx_kernel_groovy repo
uses: actions/checkout@v2
with:
repository: twosigma/beakerx_kernel_groovy
repository: martinRenou/beakerx_kernel_groovy
ref: 'update_notebook'
path: beakerx_kernel_groovy
- name: Checkout beakerx_tests repo
uses: actions/checkout@v2
Expand All @@ -62,19 +63,19 @@ jobs:
run: |
cd $GITHUB_WORKSPACE/beakerx_kernel_base
chmod +x gradlew
./gradlew install
./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
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
beakerx_kernel_groovy install
- name: Build BeakerX Base
shell: bash -l {0}
run: |
Expand All @@ -96,4 +97,3 @@ jobs:
conda activate beakerx
pip install psutil
python ci_tests.py --app=notebook --tst=*.Widget*

0 comments on commit 95affc1

Please sign in to comment.