-
Notifications
You must be signed in to change notification settings - Fork 435
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[CI][VL] Re-enable a build job running on clean dockers weekly #6424
Conversation
Thanks for opening a pull request! Could you open an issue for this pull request on Github Issues? https://github.com/apache/incubator-gluten/issues Then could you also rename commit message and pull request title in the following format?
See also: |
82b1e37
to
9bbb4cd
Compare
schedule: | ||
- cron: '0 20 * * *' | ||
- cron: '0 20 * * 0' | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please add env to bypass the nodejs issue
env:
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
@PHILO-HE centos7 should also update to use vault mirror |
@@ -53,9 +55,10 @@ jobs: | |||
yum install -y devtoolset-9 | |||
source /opt/rh/devtoolset-9/enable || exit 1 | |||
fi | |||
yum install -y java-1.8.0-openjdk-devel patch wget git && \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The epel release needs the new mirror also
rm /etc/yum.repos.d/CentOS-SCLo-scl.repo -f
sed -i \
-e 's/^mirrorlist/#mirrorlist/' \
-e 's/^#baseurl/baseurl/' \
-e 's/mirror\.centos\.org/vault.centos.org/' \
/etc/yum.repos.d/CentOS-SCLo-scl-rh.repo
46f287e
to
f4bfe09
Compare
f865ce5
to
fcfa6fe
Compare
fcfa6fe
to
53c7787
Compare
What changes were proposed in this pull request?
This is to make sure no build issue in Gluten + Velox. Other CI jobs use dockers with dependencies pre-installed, which doesn't uncover some build issues sometimes.
This job is scheduled to be triggered per week. Also fixes some issues found by this job.
Depends on #6444.