File tree 2 files changed +37
-0
lines changed
2 files changed +37
-0
lines changed Original file line number Diff line number Diff line change
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 }}
Original file line number Diff line number Diff line change @@ -901,6 +901,13 @@ tasks:
901
901
- r-pkg__bin__macosx__big-sur-arm64__contrib__4.3__arrow_{no_rc_r_version}\.tgz
902
902
- r-pkg__src__contrib__arrow_{no_rc_r_version}\.tar\.gz
903
903
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 %}
904
911
905
912
# ########################## Release verification ############################
906
913
You can’t perform that action at this time.
0 commit comments