-
Notifications
You must be signed in to change notification settings - Fork 210
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 : fix the failed fsck patch apply in CI #1441
Conversation
Codecov Report
@@ Coverage Diff @@
## master #1441 +/- ##
==========================================
- Coverage 46.27% 46.26% -0.02%
==========================================
Files 123 123
Lines 38878 38878
Branches 38878 38878
==========================================
- Hits 17991 17987 -4
- Misses 19917 19918 +1
- Partials 970 973 +3 |
.github/workflows/convert.yml
Outdated
@@ -73,7 +73,7 @@ jobs: | |||
run: | | |||
sudo apt-get update && sudo apt-get install -y build-essential git autotools-dev automake libtool pkg-config uuid-dev liblz4-dev | |||
git clone https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git | |||
cd erofs-utils && git apply ../${{ env.FSCK_PATCH_PATH }} && ./autogen.sh && ./configure && make && cd .. | |||
cd erofs-utils && ./autogen.sh && ./configure && make && cd .. |
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.
It seems we need to apply the patch.
3d29582
to
36bd6a3
Compare
.github/workflows/convert.yml
Outdated
@@ -73,7 +73,7 @@ jobs: | |||
run: | | |||
sudo apt-get update && sudo apt-get install -y build-essential git autotools-dev automake libtool pkg-config uuid-dev liblz4-dev | |||
git clone https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git | |||
cd erofs-utils && git apply ../${{ env.FSCK_PATCH_PATH }} && ./autogen.sh && ./configure && make && cd .. | |||
cd erofs-utils && git checkout v1.6 && git apply ../${{ env.FSCK_PATCH_PATH }} && ./autogen.sh && ./configure && make && cd .. |
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.
It seems to have two spaces between v1.6
and &&
.
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.
I have resolved it
018b6c7
to
0fb4509
Compare
526a048
to
43a8501
Compare
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.
Thanks, LGTM!
Signed-off-by: liyaojie <[email protected]>
The resolution to #1438.
We checked out the v1.6 branch instead of the master branch for erofs-utils.