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

Commit 858df9e

Browse files
authoredJul 9, 2024··
Merge pull request #1580 from rspec/update-ci-build-scripts-2024-07-09-for-3-13
Updates from rspec-dev (2024-07-09)
2 parents 7ff713a + 8934d0f commit 858df9e

12 files changed

+21
-12
lines changed
 

‎.github/dependabot.yml

+1-1
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-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

+10-1
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-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

+1-1
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-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

+1-1
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-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

+1-1
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-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

+1-1
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-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

+1-1
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-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

+1-1
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-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

+1-1
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-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

+1-1
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-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/run_rubocop

+1-1
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-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/update_rubygems_and_install_bundler

+1-1
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-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)
This repository has been archived.