Unverified Commit da9072fd authored by James Lamb's avatar James Lamb Committed by GitHub
Browse files

[ci] fix git checkout for comment-triggered CI jobs (#5169)

* [ci] fix git checkout for comment-triggered CI jobs

* set locale prior to installing packages

* comment out cuda

* change strategy for setting locale

* comment out R jobs

* comment out more CI jobs

* update locales before installing other packages

* remove unnecessary packages

* add libc6 back

* restore libicu and libssl

* Revert "comment out more CI jobs"

This reverts commit 8fd92144ad1dafc33ae699d7c3e159d8846e41b2.

* uncomment CI jobs

* revert more changes

* more reverting

* remove r_package.yml from diff
parent a107c907
...@@ -17,6 +17,9 @@ jobs: ...@@ -17,6 +17,9 @@ jobs:
apt-get install --no-install-recommends -y \ apt-get install --no-install-recommends -y \
ca-certificates \ ca-certificates \
git git
- name: Trust git cloning LightGBM
run: |
git config --global --add safe.directory "${GITHUB_WORKSPACE}"
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v2.4.0 uses: actions/checkout@v2.4.0
with: with:
......
...@@ -20,6 +20,9 @@ jobs: ...@@ -20,6 +20,9 @@ jobs:
apt-get install --no-install-recommends -y \ apt-get install --no-install-recommends -y \
curl \ curl \
jq jq
- name: Trust git cloning LightGBM
run: |
git config --global --add safe.directory "${GITHUB_WORKSPACE}"
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v2.4.0 uses: actions/checkout@v2.4.0
with: with:
......
...@@ -20,6 +20,9 @@ jobs: ...@@ -20,6 +20,9 @@ jobs:
apt-get install --no-install-recommends -y \ apt-get install --no-install-recommends -y \
curl \ curl \
jq jq
- name: Trust git cloning LightGBM
run: |
git config --global --add safe.directory "${GITHUB_WORKSPACE}"
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v2.4.0 uses: actions/checkout@v2.4.0
with: with:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment