Skip to content
This repository was archived by the owner on Nov 30, 2024. It is now read-only.

Commit 3d6f4f6

Browse files
committed
Updated ci build scripts (from rspec-dev)
1 parent 733fca7 commit 3d6f4f6

File tree

10 files changed

+33
-51
lines changed

10 files changed

+33
-51
lines changed

.github/workflows/ci.yml

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file was generated on 2020-11-16T22:10:30+00:00 from the rspec-dev repo.
1+
# This file was generated on 2020-11-18T09:45:41+00:00 from the rspec-dev repo.
22
# DO NOT modify it by hand as your changes will get lost the next time it is generated.
33

44
name: RSpec CI
@@ -40,3 +40,27 @@ jobs:
4040
- run: script/clone_all_rspec_repos
4141
- run: bundle install --binstubs --standalone
4242
- run: script/run_build
43+
44+
windows:
45+
name: Ruby ${{ matrix.ruby }} (Windows)
46+
runs-on: windows-latest
47+
strategy:
48+
matrix:
49+
ruby:
50+
- 2.7
51+
- 2.6
52+
- 2.5
53+
- 2.4
54+
- 2.3
55+
- 2.2
56+
- 2.1.9
57+
fail-fast: false
58+
steps:
59+
- uses: actions/checkout@v2
60+
- uses: ruby/setup-ruby@v1
61+
with:
62+
bundler: 2
63+
ruby-version: ${{ matrix.ruby }}
64+
bundler-cache: true
65+
- run: cinst ansicon
66+
- run: bundle exec rspec --backtrace

.rubocop_rspec_base.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file was generated on 2020-11-16T22:10:30+00:00 from the rspec-dev repo.
1+
# This file was generated on 2020-11-18T09:45:41+00:00 from the rspec-dev repo.
22
# DO NOT modify it by hand as your changes will get lost the next time it is generated.
33

44
# This file contains defaults for RSpec projects. Individual projects

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file was generated on 2020-11-16T22:10:30+00:00 from the rspec-dev repo.
1+
# This file was generated on 2020-11-18T09:45:41+00:00 from the rspec-dev repo.
22
# DO NOT modify it by hand as your changes will get lost the next time it is generated.
33

44
# In order to install old Rubies, we need to use old Ubuntu distibution.

appveyor.yml

Lines changed: 0 additions & 42 deletions
This file was deleted.

script/ci_functions.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file was generated on 2020-11-16T22:10:30+00:00 from the rspec-dev repo.
1+
# This file was generated on 2020-11-18T09:45:41+00:00 from the rspec-dev repo.
22
# DO NOT modify it by hand as your changes will get lost the next time it is generated.
33

44
# Taken from:

script/clone_all_rspec_repos

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
# This file was generated on 2020-11-16T22:10:30+00:00 from the rspec-dev repo.
2+
# This file was generated on 2020-11-18T09:45:41+00:00 from the rspec-dev repo.
33
# DO NOT modify it by hand as your changes will get lost the next time it is generated.
44

55
set -e

script/functions.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file was generated on 2020-11-16T22:10:30+00:00 from the rspec-dev repo.
1+
# This file was generated on 2020-11-18T09:45:41+00:00 from the rspec-dev repo.
22
# DO NOT modify it by hand as your changes will get lost the next time it is generated.
33

44
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"

script/predicate_functions.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file was generated on 2020-11-16T22:10:30+00:00 from the rspec-dev repo.
1+
# This file was generated on 2020-11-18T09:45:41+00:00 from the rspec-dev repo.
22
# DO NOT modify it by hand as your changes will get lost the next time it is generated.
33

44
function is_mri {

script/run_build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
# This file was generated on 2020-11-16T22:10:30+00:00 from the rspec-dev repo.
2+
# This file was generated on 2020-11-18T09:45:41+00:00 from the rspec-dev repo.
33
# DO NOT modify it by hand as your changes will get lost the next time it is generated.
44

55
set -e

script/update_rubygems_and_install_bundler

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
# This file was generated on 2020-11-16T22:10:30+00:00 from the rspec-dev repo.
2+
# This file was generated on 2020-11-18T09:45:41+00:00 from the rspec-dev repo.
33
# DO NOT modify it by hand as your changes will get lost the next time it is generated.
44

55
set -e

0 commit comments

Comments
 (0)