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

Commit 5f2e47c

Browse files
committed
Updated ci build scripts (from rspec-dev) main
1 parent c9b634e commit 5f2e47c

12 files changed

+20
-12
lines changed

.github/dependabot.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 2024-02-23T14:21:35+00:00 from the rspec-dev repo.
1+
# This file was generated on 2024-06-20T22:22:25+01: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
version: 2

.github/workflows/ci.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file was generated on 2024-02-23T14:21:35+00:00 from the rspec-dev repo.
1+
# This file was generated on 2024-06-20T22:22:25+01: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
@@ -83,6 +83,13 @@ jobs:
8383
- run: bundle install --standalone
8484
- run: bundle binstubs --all
8585
- run: script/run_build
86+
- name: Store coverage output for reference
87+
uses: actions/upload-artifact@v4
88+
if: failure()
89+
with:
90+
name: coverage-report-${{ matrix.ruby }}
91+
path: coverage/index.html
92+
retention-days: 14
8693

8794
legacy:
8895
name: Legacy Ruby Builds (${{ matrix.container.version }})
@@ -123,6 +130,7 @@ jobs:
123130
env:
124131
LEGACY_CI: true
125132
JRUBY_OPTS: ${{ matrix.container.jruby_opts || '--dev' }}
133+
NO_COVERAGE: true
126134
steps:
127135
- uses: actions/checkout@v3
128136
- run: ${{ matrix.container.pre }}

.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 2024-02-23T14:21:35+00:00 from the rspec-dev repo.
1+
# This file was generated on 2024-06-20T22:22:25+01: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

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 2024-02-23T14:21:35+00:00 from the rspec-dev repo.
1+
# This file was generated on 2024-06-20T22:22:25+01: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 2024-02-23T14:21:35+00:00 from the rspec-dev repo.
2+
# This file was generated on 2024-06-20T22:22:25+01: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/cucumber.sh

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 2024-02-23T14:21:35+00:00 from the rspec-dev repo.
2+
# This file was generated on 2024-06-20T22:22:25+01: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 2024-02-23T14:21:35+00:00 from the rspec-dev repo.
1+
# This file was generated on 2024-06-20T22:22:25+01: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/legacy_setup.sh

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 2024-02-23T14:21:35+00:00 from the rspec-dev repo.
2+
# This file was generated on 2024-06-20T22:22:25+01: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/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 2024-02-23T14:21:35+00:00 from the rspec-dev repo.
1+
# This file was generated on 2024-06-20T22:22:25+01: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 2024-02-23T14:21:35+00:00 from the rspec-dev repo.
2+
# This file was generated on 2024-06-20T22:22:25+01: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/run_rubocop

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 2024-02-23T14:21:35+00:00 from the rspec-dev repo.
2+
# This file was generated on 2024-06-20T22:22:25+01: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 2024-02-23T14:21:35+00:00 from the rspec-dev repo.
2+
# This file was generated on 2024-06-20T22:22:25+01: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)