Skip to content

Commit 7988e97

Browse files
committed
fix: remove redundant bundle commands from CI workflow and add bundle list to build process
1 parent fab1726 commit 7988e97

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

.github/workflows/pr-testing.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -108,12 +108,6 @@ jobs:
108108
ruby-version: ${{ matrix.ruby }}
109109
bundler-cache: true
110110

111-
- name: Bundle List
112-
run: bundle list
113-
114-
- name: Output ruby environment
115-
run: bundle env
116-
117111
- name: Install clojure tools
118112
uses: DeLaGuardo/[email protected]
119113
with:

tasks/build.rake

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ namespace :vox do
4343

4444
puts "Building openvox-server"
4545
run_command("rm -rf ruby && rm -rf output && bundle install --without test && lein install", silent: false, print_command: true)
46+
run_command('bundle list', silent: false, print_command: true)
4647
run_command("COW=\"#{@debs}\" MOCK=\"#{@rpms}\" GEM_SOURCE='https://rubygems.org' EZBAKE_ALLOW_UNREPRODUCIBLE_BUILDS=true EZBAKE_NODEPLOY=true LEIN_PROFILES=ezbake lein with-profile user,ezbake,provided ezbake local-build", silent: false, print_command: true)
4748
run_command("sudo chown -R $USER output", print_command: true)
4849
Dir.glob('output/**/*i386*').each { |f| FileUtils.rm_rf(f) }

0 commit comments

Comments
 (0)