mirror of
https://github.com/inspec/inspec
synced 2024-11-22 12:43:07 +00:00
542b9cc246
* add ruby test 3.1 in verify pipeline Signed-off-by: jayashri garud <jgarud@msystechnologies.com> * updating rubygem to 3.3.3 Signed-off-by: jayashri garud <jgarud@msystechnologies.com> * Test fixture plugin files for ABI 3.1.0 Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com> * Use kwargs to match new calling style for ERB in ruby 2.7 and 3.0 Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com> * Allow Date and Time data types, needed for waivers, since safe load is now the default for YAML Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com> * Use Time.parse, not Time.new since the rules tightened for what you can pass the constructor for waiver dates Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com> * Add ruby platform debug message to test parallel output Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com> * Conditionalize permitted_classes in inputs yaml_load for <= 3.1.x only Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com> * In ruby 3.1.0 net/pop3 is no more a default gem and that will require us to add it in Gemfile so trying with the byebug gem which we are bundling already Signed-off-by: Vasu1105 <vasundhara.jagdale@chef.io> * CFINSPEC-166 Updated url fetcher to handle Net::OpenTimeout Exception on Windows Signed-off-by: Vasu1105 <vasundhara.jagdale@chef.io> Co-authored-by: Clinton Wolfe <clintoncwolfe@gmail.com> Co-authored-by: Vasu1105 <vasundhara.jagdale@chef.io>
77 lines
2.4 KiB
Bash
Executable file
77 lines
2.4 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
echo "--- dependencies"
|
|
. .expeditor/buildkite/cache_support.sh
|
|
install_cache_deps sudo
|
|
|
|
echo "--- setting up user"
|
|
export LANG=C.UTF-8 LANGUAGE=C.UTF-8
|
|
useradd -m -U --uid 2000 normal
|
|
echo "normal ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers.d/normal
|
|
|
|
echo "--- updating rubygems"
|
|
gem update -N --system 3.3.3 --force
|
|
|
|
echo "--- system details"
|
|
uname -a
|
|
gem env
|
|
bundle --version
|
|
mount
|
|
df /tmp
|
|
echo ${TMPDIR:-unknown}
|
|
|
|
if [ -n "${CI_ENABLE_COVERAGE:-}" ]; then
|
|
# Fetch token from vault ASAP so that long-running tests don't cause our vault token to expire
|
|
echo "--- installing vault"
|
|
export VAULT_VERSION=1.9.3
|
|
export VAULT_HOME=$HOME/vault
|
|
curl --create-dirs -sSLo $VAULT_HOME/vault.zip https://releases.hashicorp.com/vault/$VAULT_VERSION/vault_${VAULT_VERSION}_linux_amd64.zip
|
|
unzip -o $VAULT_HOME/vault.zip -d $VAULT_HOME
|
|
|
|
echo "--- fetching Sonar token from vault"
|
|
export SONAR_TOKEN=$($VAULT_HOME/vault kv get -field token secret/inspec/sonar)
|
|
fi
|
|
|
|
echo "--- pull bundle cache"
|
|
pull_bundle
|
|
|
|
echo "--- bundle"
|
|
bundle config --local path vendor/bundle
|
|
bundle config set --local without tools maintenance deploy
|
|
bundle install --jobs=7 --retry=3
|
|
|
|
echo "--- push bundle cache"
|
|
push_bundle
|
|
|
|
echo "+++ bundle exec rake ${RAKE_TASK:-}"
|
|
# TODO: run this as non-root:
|
|
# chown -R normal:normal /home/normal /workdir
|
|
# su normal -c "bundle exec rake ${RAKE_TASK:-}"
|
|
# shellcheck disable=SC2086
|
|
bundle exec rake ${RAKE_TASK:-}
|
|
RAKE_EXIT=$?
|
|
|
|
# If coverage is enabled, then we need to pick up the coverage/coverage.json file
|
|
if [ -n "${CI_ENABLE_COVERAGE:-}" ]; then
|
|
echo "--- installing sonarscanner"
|
|
export SONAR_SCANNER_VERSION=4.6.2.2472
|
|
export SONAR_SCANNER_HOME=$HOME/.sonar/sonar-scanner-$SONAR_SCANNER_VERSION-linux
|
|
curl --create-dirs -sSLo $HOME/.sonar/sonar-scanner.zip https://binaries.sonarsource.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-$SONAR_SCANNER_VERSION-linux.zip
|
|
unzip -o $HOME/.sonar/sonar-scanner.zip -d $HOME/.sonar/
|
|
export PATH=$SONAR_SCANNER_HOME/bin:$PATH
|
|
export SONAR_SCANNER_OPTS="-server"
|
|
|
|
# Delete the vendor/ directory. I've tried to exclude it using sonar.exclusions,
|
|
# but that appears to get ignored, and we end up analyzing the gemfile install
|
|
# which blows our analysis.
|
|
echo "--- deleting installed gems"
|
|
rm -rf vendor/
|
|
|
|
# See sonar-project.properties for additional settings
|
|
echo "--- running sonarscanner"
|
|
sonar-scanner \
|
|
-Dsonar.sources=. \
|
|
-Dsonar.host.url=https://sonarcloud.io
|
|
fi
|
|
|
|
exit $RAKE_EXIT
|