Skip to content

Commit

Permalink
setup java
Browse files Browse the repository at this point in the history
  • Loading branch information
esolitos authored and gitbutler-client committed Aug 8, 2024
1 parent 567212b commit 265dc61
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
11 changes: 11 additions & 0 deletions .github/actions/install-deps/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,17 @@ runs:
# dnf config-manager --add-repo=https://download.docker.com/linux/centos/docker-ce.repo
# dnf -y install docker-ce protobuf-compiler protobuf-devel python3 python3-pip --nobest

- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1
bundler-cache: true

- uses: actions/setup-java@v4
with:
distribution: "temurin"
java-version: "17"

- name: Install python dependencies
shell: bash
run: |
Expand Down
9 changes: 2 additions & 7 deletions .github/workflows/verify-guides.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ jobs:
# volumes:
# - "/var/run/docker.sock:/var/run/docker.sock"
# ports:
# - "19071:19071"
# - "19071"
# - "8080"
env:
LANG: "C.UTF-8"
steps:
Expand All @@ -39,12 +40,6 @@ jobs:
with:
vespa-cli-version: latest

- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1
bundler-cache: true

# - name: install-site
# run: |
# gem install bundler
Expand Down

0 comments on commit 265dc61

Please sign in to comment.