From e2eb95f05149f49409c6b9e8a4ed294104aa4a45 Mon Sep 17 00:00:00 2001 From: "michael.rabellino" Date: Wed, 7 Feb 2024 10:20:15 -0700 Subject: [PATCH] updating sci base dockerfile and removing java gha --- .github/workflows/java-commons.yml | 39 ------------------------------ docker/python-sci/Dockerfile | 2 +- 2 files changed, 1 insertion(+), 40 deletions(-) delete mode 100644 .github/workflows/java-commons.yml diff --git a/.github/workflows/java-commons.yml b/.github/workflows/java-commons.yml deleted file mode 100644 index b1f5f101..00000000 --- a/.github/workflows/java-commons.yml +++ /dev/null @@ -1,39 +0,0 @@ -# This workflow will build a Java project with Gradle -# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle - -name: Java CI with Gradle - -on: - push: - branches: - - 'main' - pull_request: - -jobs: - build: - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - - uses: gradle/wrapper-validation-action@v1 - - name: Set up JDK 11 - uses: actions/setup-java@v2 - with: - java-version: '11' - distribution: 'adopt' - - - name: Setup Gradle - uses: gradle/gradle-build-action@v2 - - - name: Build with Gradle - run: | - cd ./java - chmod +x ./gradlew - ./gradlew build - - - name: Archive test report - uses: actions/upload-artifact@v2 - with: - name: Test report - path: ./java//build/reports/tests/test diff --git a/docker/python-sci/Dockerfile b/docker/python-sci/Dockerfile index 11fd3a22..d00143d1 100644 --- a/docker/python-sci/Dockerfile +++ b/docker/python-sci/Dockerfile @@ -13,7 +13,7 @@ ENV LANGUAGE en_US.UTF-8 # Install dependencies (and force Python 3.11 update) RUN conda config --add channels conda-forge && \ - conda install -y python=3.11.6 && \ + conda install -y python=3.11 && \ conda install -y \ pika==1.3.1 \ python-dateutil==2.8.2 \