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

Commit 4489310

Browse files
authored
Merge pull request #604 from rspec/update-ci-build-scripts-2024-07-09-for-3-13
Updates from rspec-dev (2024-07-09)
2 parents 9b29959 + 41f9898 commit 4489310

File tree

12 files changed

+21
-12
lines changed

12 files changed

+21
-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:37+00:00 from the rspec-dev repo.
1+
# This file was generated on 2024-07-09T08:58:36+02: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: 10 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:37+00:00 from the rspec-dev repo.
1+
# This file was generated on 2024-07-09T08:58:36+02: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 }})
@@ -121,8 +128,10 @@ jobs:
121128
tag: ghcr.io/rspec/docker-ci:jruby-9.1.17.0
122129
options: "--add-host rubygems.org:151.101.129.227 --add-host api.rubygems.org:151.101.129.227"
123130
env:
131+
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
124132
LEGACY_CI: true
125133
JRUBY_OPTS: ${{ matrix.container.jruby_opts || '--dev' }}
134+
NO_COVERAGE: true
126135
steps:
127136
- uses: actions/checkout@v3
128137
- 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:37+00:00 from the rspec-dev repo.
1+
# This file was generated on 2024-07-09T08:58:36+02: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:37+00:00 from the rspec-dev repo.
1+
# This file was generated on 2024-07-09T08:58:36+02: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:37+00:00 from the rspec-dev repo.
2+
# This file was generated on 2024-07-09T08:58:36+02: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:37+00:00 from the rspec-dev repo.
2+
# This file was generated on 2024-07-09T08:58:36+02: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:37+00:00 from the rspec-dev repo.
1+
# This file was generated on 2024-07-09T08:58:36+02: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:37+00:00 from the rspec-dev repo.
2+
# This file was generated on 2024-07-09T08:58:36+02: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:37+00:00 from the rspec-dev repo.
1+
# This file was generated on 2024-07-09T08:58:36+02: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:37+00:00 from the rspec-dev repo.
2+
# This file was generated on 2024-07-09T08:58:36+02: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)