diff --git a/.expeditor/buildkite/verify.ps1 b/.expeditor/buildkite/verify.ps1 new file mode 100644 index 0000000000..d039cbad19 --- /dev/null +++ b/.expeditor/buildkite/verify.ps1 @@ -0,0 +1,11 @@ +echo "--- system details" +$Properties = 'Caption', 'CSName', 'Version', 'BuildType', 'OSArchitecture' +Get-CimInstance Win32_OperatingSystem | Select-Object $Properties | Format-Table -AutoSize +ruby -v +bundle --version + +echo "--- bundle install" +bundle install --jobs=7 --retry=3 --without tools maintenance deploy + +echo "+++ bundle exec rake" +bundle exec rake diff --git a/.expeditor/verify.pipeline.yml b/.expeditor/verify.pipeline.yml index a47c5f8aba..3e89530e85 100644 --- a/.expeditor/verify.pipeline.yml +++ b/.expeditor/verify.pipeline.yml @@ -29,3 +29,14 @@ steps: executor: docker: image: ruby:2.6-stretch + +- label: run-tests-ruby-2.6-windows + command: + - /workdir/.expeditor/buildkite/verify.ps1 + expeditor: + executor: + docker: + environment: + - BUILDKITE + host_os: windows + shell: ["powershell", "-Command"]