Skip to content

Commit f96684f

Browse files
committed
Add recheck crossbow task
1 parent 9105a41 commit f96684f

File tree

2 files changed

+37
-0
lines changed

2 files changed

+37
-0
lines changed

dev/tasks/r/github.recheck.yml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing,
12+
# software distributed under the License is distributed on an
13+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14+
# KIND, either express or implied. See the License for the
15+
# specific language governing permissions and limitations
16+
# under the License.
17+
18+
{% import 'macros.jinja' as macros with context %}
19+
20+
{{ macros.github_header() }}
21+
22+
jobs:
23+
recheck:
24+
name: Reverse check {{ which }} dependents
25+
uses: amoeba/recheck/.github/workflows/recheck.yml@v1 # TODO: Point at recheck not amoeba before merging and pin to SHA
26+
with:
27+
which: {{ which }}
28+
subdirectory: r
29+
repository: {{ arrow.github_repo }}
30+
ref: {{ arrow.branch }}

dev/tasks/tasks.yml

+7
Original file line numberDiff line numberDiff line change
@@ -901,6 +901,13 @@ tasks:
901901
- r-pkg__bin__macosx__big-sur-arm64__contrib__4.3__arrow_{no_rc_r_version}\.tgz
902902
- r-pkg__src__contrib__arrow_{no_rc_r_version}\.tar\.gz
903903

904+
{% for which in ["strong", "most"] %}
905+
r-recheck-{{which}}:
906+
ci: github
907+
template: r/github.recheck.yml
908+
params:
909+
which: {{which}}
910+
{% endfor %}
904911

905912
########################### Release verification ############################
906913

0 commit comments

Comments
 (0)