Skip to content

Commit 7a3139f

Browse files
committed
Fix manual integration test build
1 parent d4790bb commit 7a3139f

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.ci/build.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ function build() {
1515
pmd_ci_log_group_end
1616

1717
pmd_ci_log_group_start "Install dependencies"
18-
gem install --user-install bundler
18+
# bundler should already be installed
19+
bundle --version
1920
bundle config set --local path vendor/bundle
2021
bundle install
2122
pmd_ci_log_group_end

.ci/manual-integration-tests.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ function build() {
1515
pmd_ci_log_group_end
1616

1717
pmd_ci_log_group_start "Install dependencies"
18-
gem install --user-install bundler
18+
# bundler should already be installed
19+
bundle --version
1920
bundle config set --local path vendor/bundle
2021
bundle install
2122
pmd_ci_log_group_end

.github/workflows/manual-integration-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,16 @@ jobs:
2323
key: v3-${{ runner.os }}-${{ hashFiles('pmdtester.gemspec') }}
2424
restore-keys: |
2525
v3-${{ runner.os }}-
26-
- name: Set up Ruby 2.7
26+
- name: Set up Ruby 3.3
2727
uses: ruby/setup-ruby@v1
2828
with:
29-
ruby-version: 2.7
29+
ruby-version: 3.3
3030
- name: Setup Environment
3131
shell: bash
3232
run: |
3333
echo "LANG=en_US.UTF-8" >> $GITHUB_ENV
3434
echo "MAVEN_OPTS=-Dmaven.wagon.httpconnectionManager.ttlSeconds=180 -Dmaven.wagon.http.retryHandler.count=3" >> $GITHUB_ENV
35-
echo "PMD_CI_SCRIPTS_URL=https://raw.githubusercontent.com/pmd/build-tools/17/scripts" >> $GITHUB_ENV
35+
echo "PMD_CI_SCRIPTS_URL=https://raw.githubusercontent.com/pmd/build-tools/master/scripts" >> $GITHUB_ENV
3636
- name: Check Environment
3737
shell: bash
3838
run: |

0 commit comments

Comments
 (0)