Set woodpecker to output all run information
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
This commit is contained in:
parent
68b32c4b2f
commit
1f1a07f7eb
1 changed files with 7 additions and 7 deletions
|
@ -15,9 +15,9 @@ steps:
|
|||
- sed -i '/security/d' /etc/apt/sources.list
|
||||
- sed -i '/stretch-updates/d' /etc/apt/sources.list
|
||||
# Pull down latest updates
|
||||
- apt update
|
||||
- apt-get update
|
||||
# Install git and Ruby environment manager
|
||||
- apt install -y git rbenv
|
||||
- DEBIAN_FRONTEND=noninteractive apt-get install -y git rbenv
|
||||
# Install ruby-build plugin, allowing build-from-source install of latest version
|
||||
- git clone https://github.com/rbenv/ruby-build.git "$(rbenv root)"/plugins/ruby-build
|
||||
# Install version 3.3.5
|
||||
|
@ -25,16 +25,16 @@ steps:
|
|||
# Set version 3.3.5 as default
|
||||
- rbenv global 3.3.5
|
||||
# Ensure that 3.3.5 is available
|
||||
- eval "$(rbenv init -)" &> /dev/null
|
||||
- eval "$(rbenv init -)"
|
||||
# Install necessary libraries for this project
|
||||
- bundle install &> /dev/null
|
||||
- bundle install
|
||||
# Update system's Ruby libraries using Ruby v3.3.5
|
||||
- gem update &> /dev/null
|
||||
- gem update
|
||||
# Clean up pre-installed out of date libraries
|
||||
- gem pristine --all &> /dev/null
|
||||
- gem pristine --all
|
||||
# Manually install slop gem to user (????)
|
||||
# No idea why this is necessary, or why this works when bundle install should do the same thing
|
||||
- gem install slop &> /dev/null
|
||||
- gem install slop
|
||||
# Run project
|
||||
- ruby lib/fuzzer.rb discover http://localhost/ --custom-auth=dvwa
|
||||
- ruby lib/fuzzer.rb discover http://127.0.0.1/fuzzer-tests
|
||||
|
|
Loading…
Add table
Reference in a new issue