Skip to content

Commit

Permalink
Fix python and hunter version
Browse files Browse the repository at this point in the history
Signed-off-by: Andrea Lamparelli <[email protected]>
  • Loading branch information
lampajr committed Oct 11, 2024
1 parent c1a16a5 commit 19b8f7e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,15 @@ jobs:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
# required to install Hunter
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install Hunter
run: pipx install git+https://github.com/datastax-labs/hunter.git
run: |
pip --version
pip install git+https://github.com/datastax-labs/hunter@5c0b480815a281322ebbbf157f70fc785212a892
pip freeze | grep hunter
- name: Maven Version
run: mvn --version
- name: Build and Test
Expand Down
2 changes: 1 addition & 1 deletion horreum-backend/src/main/docker/Dockerfile.jvm.base
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ RUN INSTALL_PKGS="python3 python3-devel python3-setuptools python3-pip python3-p
rpm -e --nodeps redhat-logos-httpd && \
microdnf -y clean all --enablerepo='*'
USER 185
RUN pip install git+https://github.com/datastax-labs/hunter
RUN pip install git+https://github.com/datastax-labs/hunter@5c0b480815a281322ebbbf157f70fc785212a892
COPY src/main/resources/horreum.sh /deployments/
COPY src/main/resources/k8s-setup.sh /deployments/

0 comments on commit 19b8f7e

Please sign in to comment.