@@ -250,20 +250,19 @@ jobs:
250
250
steps :
251
251
# The centos container doesn't have Git 2.18.0 or higher
252
252
# 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
261
261
262
262
- name : Checkout repo
263
263
uses : actions/checkout@v3
264
264
with :
265
265
fetch-depth : 0
266
- submodules : true
267
266
268
267
- name : Install Node.js v16
269
268
uses : actions/setup-node@v3
@@ -301,7 +300,7 @@ jobs:
301
300
run : source scl_source enable devtoolset-9 && yarn release:standalone
302
301
303
302
- name : Install test dependencies
304
- run : yarn install
303
+ run : yarn install --ignore-scripts && cd test && yarn install
305
304
306
305
- name : Run integration tests on standalone release
307
306
run : yarn test:integration
@@ -438,7 +437,7 @@ jobs:
438
437
run : yarn release:standalone
439
438
440
439
- name : Install test dependencies
441
- run : yarn install
440
+ run : yarn install --ignore-scripts && cd test && yarn install
442
441
443
442
- name : Run integration tests on standalone release
444
443
run : yarn test:integration
0 commit comments