diff options
author | Jeremiah Snapp <jeremiah@chef.io> | 2019-06-24 11:16:26 -0400 |
---|---|---|
committer | Jeremiah Snapp <jeremiah@chef.io> | 2019-06-24 11:36:35 -0400 |
commit | 109410f1a62033d551855ed767fb264eb1cfada7 (patch) | |
tree | 5f85f2abe73464a3444a15199db133afd7125734 | |
parent | 66870b91c8c2c0b396a2f284b06c8ed949087a85 (diff) | |
download | chef-snappj/replace-jenkins-with-buildkite.tar.gz |
Replace Jenkins omnibus build/test pipeline with Buildkitesnappj/replace-jenkins-with-buildkite
Signed-off-by: Jeremiah Snapp <jeremiah@chef.io>
-rw-r--r-- | .expeditor/config.yml | 2 | ||||
-rwxr-xr-x | ci/verify-chef.bat | 88 | ||||
-rwxr-xr-x | ci/verify-chef.sh | 114 |
3 files changed, 1 insertions, 203 deletions
diff --git a/.expeditor/config.yml b/.expeditor/config.yml index ca52c379ab..b06050f271 100644 --- a/.expeditor/config.yml +++ b/.expeditor/config.yml @@ -72,7 +72,7 @@ merge_actions: - "Expeditor: Skip Habitat" - "Expeditor: Skip All" only_if: built_in:bump_version - - built_in:trigger_omnibus_release_build: + - trigger_pipeline:omnibus/release: ignore_labels: - "Expeditor: Skip Omnibus" - "Expeditor: Skip All" diff --git a/ci/verify-chef.bat b/ci/verify-chef.bat deleted file mode 100755 index 37e5bcd323..0000000000 --- a/ci/verify-chef.bat +++ /dev/null @@ -1,88 +0,0 @@ - -@ECHO OFF - -REM ; %PROJECT_NAME% is set by Jenkins, this allows us to use the same script to verify -REM ; Chef and Angry Chef -cd C:\opscode\%PROJECT_NAME%\bin - -REM ; We don't want to add the embedded bin dir to the main PATH as this -REM ; could mask issues in our binstub shebangs. -SET EMBEDDED_BIN_DIR=C:\opscode\%PROJECT_NAME%\embedded\bin - -ECHO. - -REM ; Set the temporary directory to a custom location, and wipe it before -REM ; and after the tests run. -SET TEMP=%TEMP%\cheftest -SET TMP=%TMP%\cheftest -RMDIR /S /Q %TEMP% -MKDIR %TEMP% - -REM ; FIXME: we should really use Bundler.with_clean_env in the caller instead of re-inventing it here -set _ORIGINAL_GEM_PATH= -set BUNDLE_BIN_PATH= -set BUNDLE_GEMFILE= -set GEM_HOME= -set GEM_PATH= -set GEM_ROOT= -set RUBYLIB= -set RUBYOPT= -set RUBY_ENGINE= -set RUBY_ROOT= -set RUBY_VERSION= -set BUNDLER_VERSION= - -FOR %%b IN ( - chef-client - knife - chef-solo - ohai -) DO ( - - - ECHO Checking for existence of binfile `%%b`... - - IF EXIST %%b ( - ECHO ...FOUND IT! - ) ELSE ( - GOTO :error - ) - ECHO. -) - -call chef-client --version - -REM ; Exercise various packaged tools to validate binstub shebangs -call %EMBEDDED_BIN_DIR%\ruby --version -call %EMBEDDED_BIN_DIR%\gem --version -call %EMBEDDED_BIN_DIR%\bundle --version -call %EMBEDDED_BIN_DIR%\rspec --version - -SET PATH=C:\opscode\%PROJECT_NAME%\bin;C:\opscode\%PROJECT_NAME%\embedded\bin;%PATH% - -REM ; Test against the vendored chef gem (cd into the output of "gem which chef") -for /f "delims=" %%a in ('gem which chef') do set CHEFDIR=%%a -call :dirname "%CHEFDIR%" CHEFDIR -call :dirname "%CHEFDIR%" CHEFDIR -cd %CHEFDIR% - -cd - -IF "%PIPELINE_NAME%" == "chef-fips" ( - set CHEF_FIPS=1 -) - -REM ; ffi-yajl must run in c-extension mode for perf, so force it so we don't accidentally fall back to ffi -set FORCE_FFI_YAJL=ext - -call %EMBEDDED_BIN_DIR%\bundle install -call %EMBEDDED_BIN_DIR%\bundle exec rspec -r rspec_junit_formatter -f RspecJunitFormatter -o %WORKSPACE%\test.xml -f documentation spec/functional - -GOTO :EOF - -:dirname file varName - setlocal ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION - SET _dir=%~dp1 - SET _dir=%_dir:~0,-1% - endlocal & set %2=%_dir% -GOTO thout:EOF diff --git a/ci/verify-chef.sh b/ci/verify-chef.sh deleted file mode 100755 index 105e8f267d..0000000000 --- a/ci/verify-chef.sh +++ /dev/null @@ -1,114 +0,0 @@ -#!/bin/sh - -set -evx - -# Our tests hammer YUM pretty hard and the EL6 testers get corrupted -# after some period of time. Rebuilding the RPM database clears -# up the underlying corruption. We'll do this each test run just to -# be safe. -if [ -f /etc/redhat-release ]; then - major_version=`sed 's/^.\+ release \([0-9]\+\).*/\1/' /etc/redhat-release` - if [ "$major_version" -lt "7" ]; then - sudo rm -rf /var/lib/rpm/__db* - sudo db_verify /var/lib/rpm/Packages - sudo rpm --rebuilddb - sudo yum clean all - fi -fi - -# Set up a custom tmpdir, and clean it up before and after the tests -TMPDIR="${TMPDIR:-/tmp}/cheftest" -export TMPDIR -sudo rm -rf $TMPDIR -mkdir -p $TMPDIR - -# Verify that we kill any orphaned test processes. Kill any orphaned rspec processes. -ps ax | egrep 'rspec' | grep -v grep | awk '{ print $1 }' | xargs sudo kill -s KILL || true - -# $PROJECT_NAME is set by Jenkins, this allows us to use the same script to verify -# Chef and Angry Chef -PATH=/opt/$PROJECT_NAME/bin:$PATH -export PATH - -BIN_DIR=/opt/$PROJECT_NAME/bin -export BIN_DIR - -# We don't want to add the embedded bin dir to the main PATH as this -# could mask issues in our binstub shebangs. -EMBEDDED_BIN_DIR=/opt/$PROJECT_NAME/embedded/bin -export EMBEDDED_BIN_DIR - -# If we are on Mac our symlinks are located under /usr/local/bin -# otherwise they are under /usr/bin -if [ -f /usr/bin/sw_vers ]; then - USR_BIN_DIR="/usr/local/bin" -else - USR_BIN_DIR="/usr/bin" -fi -export USR_BIN_DIR - -# sanity check that we're getting the correct symlinks from the pre-install script -# solaris doesn't have readlink or test -e. ls -n is different on BSD. proceed with caution. -if [ ! -L $USR_BIN_DIR/chef-client ] || [ `ls -l $USR_BIN_DIR/chef-client | awk '{print$NF}'` != "$BIN_DIR/chef-client" ]; then - echo "$USR_BIN_DIR/chef-client symlink to $BIN_DIR/chef-client was not correctly created by the pre-install script!" - exit 1 -fi - -if [ ! -L $USR_BIN_DIR/knife ] || [ `ls -l $USR_BIN_DIR/knife | awk '{print$NF}'` != "$BIN_DIR/knife" ]; then - echo "$USR_BIN_DIR/knife symlink to $BIN_DIR/knife was not correctly created by the pre-install script!" - exit 1 -fi - -if [ ! -L $USR_BIN_DIR/chef-solo ] || [ `ls -l $USR_BIN_DIR/chef-solo | awk '{print$NF}'` != "$BIN_DIR/chef-solo" ]; then - echo "$USR_BIN_DIR/chef-solo symlink to $BIN_DIR/chef-solo was not correctly created by the pre-install script!" - exit 1 -fi - -if [ ! -L $USR_BIN_DIR/ohai ] || [ `ls -l $USR_BIN_DIR/ohai | awk '{print$NF}'` != "$BIN_DIR/ohai" ]; then - echo "$USR_BIN_DIR/ohai symlink to $BIN_DIR/ohai was not correctly created by the pre-install script!" - exit 1 -fi - -# Ensure the calling environment (disapproval look Bundler) does not -# infect our Ruby environment created by the `chef-client` cli. -for ruby_env_var in _ORIGINAL_GEM_PATH \ - BUNDLE_BIN_PATH \ - BUNDLE_GEMFILE \ - GEM_HOME \ - GEM_PATH \ - GEM_ROOT \ - RUBYLIB \ - RUBYOPT \ - RUBY_ENGINE \ - RUBY_ROOT \ - RUBY_VERSION \ - BUNDLER_VERSION - -do - unset $ruby_env_var -done - -chef-client --version - -# Exercise various packaged tools to validate binstub shebangs -$EMBEDDED_BIN_DIR/ruby --version -$EMBEDDED_BIN_DIR/gem --version -$EMBEDDED_BIN_DIR/bundle --version -$EMBEDDED_BIN_DIR/rspec --version - -# ffi-yajl must run in c-extension mode or we take perf hits, so we force it -# before running rspec so that we don't wind up testing the ffi mode -FORCE_FFI_YAJL=ext -export FORCE_FFI_YAJL - -OLD_PATH=$PATH -PATH=/opt/$PROJECT_NAME/bin:/opt/$PROJECT_NAME/embedded/bin:$PATH - -gem_list=`gem which chef` -lib_dir=`dirname $gem_list` -CHEF_GEM=`dirname $lib_dir` - - -cd $CHEF_GEM -sudo bundle install -sudo bundle exec rspec -r rspec_junit_formatter -f RspecJunitFormatter -o $WORKSPACE/test.xml -f documentation spec/functional |