From 95affc19a1bb4c95af18114759837c87d601d61d Mon Sep 17 00:00:00 2001 From: martinRenou Date: Tue, 26 Sep 2023 14:10:21 +0200 Subject: [PATCH] Use dev branch for CI --- .github/workflows/main.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 004db1c..aa17b6f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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: @@ -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 @@ -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: | @@ -96,4 +97,3 @@ jobs: conda activate beakerx pip install psutil python ci_tests.py --app=notebook --tst=*.Widget* -