summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2023-03-02 09:58:03 -0800
committerTakashi Kokubun <takashikkbn@gmail.com>2023-03-02 09:58:06 -0800
commit98235834fa75ad86b920eee33480a087568c054e (patch)
tree073aabe3e86e6cb43bf63b1fa57ea57d70905fea /.github
parent533c8c0c44d064eff90f8c26407a9e0fac4baa43 (diff)
downloadruby-98235834fa75ad86b920eee33480a087568c054e.tar.gz
Investigate missing ./autogen.sh
https://github.com/ruby/ruby/actions/runs/4316772946/jobs/7532986318
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/compilers.yml7
1 files changed, 6 insertions, 1 deletions
diff --git a/.github/workflows/compilers.yml b/.github/workflows/compilers.yml
index 80df706f8f..a70225d6a0 100644
--- a/.github/workflows/compilers.yml
+++ b/.github/workflows/compilers.yml
@@ -234,7 +234,12 @@ jobs:
with:
path: src/.downloaded-cache
key: downloaded-cache
- - run: ./autogen.sh
+ - name: autogen
+ run: |
+ if [ ! -f ./autogen.sh ]; then
+ ls -la
+ fi
+ ./autogen.sh
working-directory: src
- name: Run configure
run: >