Skip to content

Commit 997fa28

Browse files
committed
try asher appraoch
1 parent d6c47e3 commit 997fa28

File tree

1 file changed

+10
-11
lines changed

1 file changed

+10
-11
lines changed

.github/workflows/ci.yaml

+10-11
Original file line numberDiff line numberDiff line change
@@ -250,20 +250,19 @@ jobs:
250250
steps:
251251
# The centos container doesn't have Git 2.18.0 or higher
252252
# so we install git again, otherwise submodules won't be installed
253-
- name: Install Git
254-
# Source: https://www.tutorialspoint.com/how-to-install-the-latest-version-of-git-on-centos-7-x-6-x
255-
run: |
256-
yum install epel-release
257-
yum remove git
258-
rpm -U https://centos7.iuscommunity.org/ius-release.rpm
259-
yum install git2u
260-
git --version
253+
# - name: Install Git
254+
# # Source: https://www.tutorialspoint.com/how-to-install-the-latest-version-of-git-on-centos-7-x-6-x
255+
# run: |
256+
# yum install epel-release
257+
# yum remove git
258+
# rpm -U https://centos7.iuscommunity.org/ius-release.rpm
259+
# yum install git2u
260+
# git --version
261261

262262
- name: Checkout repo
263263
uses: actions/checkout@v3
264264
with:
265265
fetch-depth: 0
266-
submodules: true
267266

268267
- name: Install Node.js v16
269268
uses: actions/setup-node@v3
@@ -301,7 +300,7 @@ jobs:
301300
run: source scl_source enable devtoolset-9 && yarn release:standalone
302301

303302
- name: Install test dependencies
304-
run: yarn install
303+
run: yarn install --ignore-scripts && cd test && yarn install
305304

306305
- name: Run integration tests on standalone release
307306
run: yarn test:integration
@@ -438,7 +437,7 @@ jobs:
438437
run: yarn release:standalone
439438

440439
- name: Install test dependencies
441-
run: yarn install
440+
run: yarn install --ignore-scripts && cd test && yarn install
442441

443442
- name: Run integration tests on standalone release
444443
run: yarn test:integration

0 commit comments

Comments
 (0)