summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2020-06-04 08:22:50 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2020-06-04 09:09:51 +0900
commitf6acbf76796e1b0ea4198ab0cb86ededa86a73ad (patch)
treef1ca864bca07f63b1d365cff6e41308173a82fc7 /.github
parent1ce40e3b291b167cea6a0e5b4c517e3a26096d9b (diff)
Fetch no tags
Fetched tags by `make up` are not used, in CI environments.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/compilers.yml1
-rw-r--r--.github/workflows/macos.yml2
-rw-r--r--.github/workflows/mingw.yml1
-rw-r--r--.github/workflows/mjit.yml1
-rw-r--r--.github/workflows/ubuntu.yml2
-rw-r--r--.github/workflows/windows.yml2
6 files changed, 9 insertions, 0 deletions
diff --git a/.github/workflows/compilers.yml b/.github/workflows/compilers.yml
index d14fb697c2..31d71e62b5 100644
--- a/.github/workflows/compilers.yml
+++ b/.github/workflows/compilers.yml
@@ -33,6 +33,7 @@ env:
UNICODE_AUXILIARY_FILES=.
UNICODE_EMOJI_FILES=.
CONFIGURE_TTY: never
+ GITPULLOPTIONS: --no-tags
RUBY_DEBUG: ci rgengc
RUBY_TESTOPTS: >-
-q
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
index ab11cefb1f..2858858fe0 100644
--- a/.github/workflows/macos.yml
+++ b/.github/workflows/macos.yml
@@ -7,6 +7,8 @@ jobs:
matrix:
test_task: [ "check", "test-bundler", "test-bundled-gems", "leaked-globals" ]
fail-fast: false
+ env:
+ GITPULLOPTIONS: --no-tags
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 efc073dd5b..c5a9c7f040 100644
--- a/.github/workflows/mingw.yml
+++ b/.github/workflows/mingw.yml
@@ -17,6 +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
strategy:
matrix:
test_task: [ "check" ] # to make job names consistent
diff --git a/.github/workflows/mjit.yml b/.github/workflows/mjit.yml
index 3db2d3c870..04a34351f1 100644
--- a/.github/workflows/mjit.yml
+++ b/.github/workflows/mjit.yml
@@ -12,6 +12,7 @@ jobs:
env:
TESTOPTS: '-q --tty=no'
RUN_OPTS: '--disable-gems --jit-warnings ${{ matrix.jit_opts }}'
+ GITPULLOPTIONS: --no-tags
steps:
- name: Install libraries
run: |
diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml
index 9166c93d60..62bd799311 100644
--- a/.github/workflows/ubuntu.yml
+++ b/.github/workflows/ubuntu.yml
@@ -23,6 +23,8 @@ jobs:
- test_task: leaked-globals
debug: -DRUBY_DEBUG
fail-fast: false
+ env:
+ GITPULLOPTIONS: --no-tags
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 b28c1b81f3..fbb944353e 100644
--- a/.github/workflows/windows.yml
+++ b/.github/workflows/windows.yml
@@ -9,6 +9,8 @@ jobs:
vs: [2019]
fail-fast: false
runs-on: ${{ matrix.os }}
+ env:
+ GITPULLOPTIONS: --no-tags
if: "!contains(github.event.head_commit.message, '[ci skip]')"
steps:
- uses: actions/cache@v1