summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2020-06-04 10:26:40 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2020-06-04 13:16:24 +0900
commit047471c52960e32146025fab064487d25f92a141 (patch)
treee970f67bb9b8c838b6f87552b959a4e7a6110e26 /.github
parent3d7138871079d02b31c05ca6af943d56365a8776 (diff)
No GITPULLOPTIONS by default
To honor the environment variable, keep GITPULLOPTIONS unset by default, and appended the option to VCSUP.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/compilers.yml2
-rw-r--r--.github/workflows/macos.yml2
-rw-r--r--.github/workflows/mingw.yml2
-rw-r--r--.github/workflows/mjit.yml2
-rw-r--r--.github/workflows/ubuntu.yml2
-rw-r--r--.github/workflows/windows.yml2
6 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/compilers.yml b/.github/workflows/compilers.yml
index 31d71e62b5..bc2cc37c4e 100644
--- a/.github/workflows/compilers.yml
+++ b/.github/workflows/compilers.yml
@@ -33,7 +33,7 @@ env:
UNICODE_AUXILIARY_FILES=.
UNICODE_EMOJI_FILES=.
CONFIGURE_TTY: never
- GITPULLOPTIONS: --no-tags
+ GITPULLOPTIONS: --no-tags origin ${{github.ref}}
RUBY_DEBUG: ci rgengc
RUBY_TESTOPTS: >-
-q
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
index 0c1eaadcb1..bce25ce6bf 100644
--- a/.github/workflows/macos.yml
+++ b/.github/workflows/macos.yml
@@ -8,7 +8,7 @@ jobs:
test_task: [ "check", "test-bundler", "test-bundled-gems", "leaked-globals" ]
fail-fast: false
env:
- GITPULLOPTIONS: --no-tags
+ GITPULLOPTIONS: --no-tags origin ${{github.ref}}
if: "!contains(github.event.head_commit.message, '[ci skip]')"
steps:
- name: Disable Firewall
diff --git a/.github/workflows/mingw.yml b/.github/workflows/mingw.yml
index 576308ee6c..c109790013 100644
--- a/.github/workflows/mingw.yml
+++ b/.github/workflows/mingw.yml
@@ -17,7 +17,7 @@ jobs:
CPPFLAGS: "-D_FORTIFY_SOURCE=2 -D__USE_MINGW_ANSI_STDIO=1 -DFD_SETSIZE=2048"
LDFLAGS: "-pipe -fstack-protector-strong"
UPDATE_UNICODE: "UNICODE_FILES=. UNICODE_PROPERTY_FILES=. UNICODE_AUXILIARY_FILES=. UNICODE_EMOJI_FILES=."
- GITPULLOPTIONS: --no-tags
+ GITPULLOPTIONS: --no-tags origin ${{github.ref}}
strategy:
matrix:
test_task: [ "check" ] # to make job names consistent
diff --git a/.github/workflows/mjit.yml b/.github/workflows/mjit.yml
index 244bb60696..c804683ad0 100644
--- a/.github/workflows/mjit.yml
+++ b/.github/workflows/mjit.yml
@@ -12,7 +12,7 @@ jobs:
env:
TESTOPTS: '-q --tty=no'
RUN_OPTS: '--disable-gems --jit-warnings ${{ matrix.jit_opts }}'
- GITPULLOPTIONS: --no-tags
+ GITPULLOPTIONS: --no-tags origin ${{github.ref}}
steps:
- name: Install libraries
run: |
diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml
index c7b8b38cdd..42c0264b17 100644
--- a/.github/workflows/ubuntu.yml
+++ b/.github/workflows/ubuntu.yml
@@ -24,7 +24,7 @@ jobs:
debug: -DRUBY_DEBUG
fail-fast: false
env:
- GITPULLOPTIONS: --no-tags
+ GITPULLOPTIONS: --no-tags origin ${{github.ref}}
runs-on: ${{ matrix.os }}
if: "!contains(github.event.head_commit.message, '[ci skip]')"
steps:
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml
index c4626180f4..a3822c357f 100644
--- a/.github/workflows/windows.yml
+++ b/.github/workflows/windows.yml
@@ -10,7 +10,7 @@ jobs:
fail-fast: false
runs-on: ${{ matrix.os }}
env:
- GITPULLOPTIONS: --no-tags
+ GITPULLOPTIONS: --no-tags origin ${{github.ref}}
if: "!contains(github.event.head_commit.message, '[ci skip]')"
steps:
- uses: actions/cache@v1