-
Notifications
You must be signed in to change notification settings - Fork 264
fix(ci)_: fetch gomobile deps #6625
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
Conversation
Jenkins BuildsClick to see older builds (36)
|
5f846dc to
17b4735
Compare
Makefile
Outdated
| export GO111MODULE=on; \ | ||
| export GOFLAGS="-mod=mod" \ |
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.
What's the point of this indent? Also you don't need two exports:
| export GO111MODULE=on; \ | |
| export GOFLAGS="-mod=mod" \ | |
| export GO111MODULE=on GOFLAGS="-mod=mod"; \ |
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.
ah sorry, i fucked up indents trying to get this PR out quickly.
will fix.
17b4735 to
cae58ee
Compare
Otherwise CI builds were failing with : ``` github.com/status-im/status-go/mobile/requests github.com/status-im/status-go/server/pairing/preflight github.com/status-im/status-go/mobile gobind/gobind gobind/gobind /nix/store/9cimpd18hk5dly63v76nwjdfc6h284bm-gomobile-0-unstable-2024-12-13/bin/gomobile: open build/bin/statusgo.aar: no such file or directory make: *** [Makefile:186: statusgo-android] Error 1 ``` failing CI job : https://ci.status.im/blue/organizations/jenkins/status-go%2Fprs%2Fandroid/detail/PR-6612/13/pipeline/ I tried to build manually on `linux-02` and got the same failure, also this build directory was absent. ``` bash-5.2$ ls -la build/ 2>/dev/null || echo "build directory doesn't exist" build directory doesn't exist ``` also fixes : #6579
cae58ee to
ff46c74
Compare
9172db3 to
b779de9
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## develop #6625 +/- ##
===========================================
+ Coverage 60.44% 60.50% +0.06%
===========================================
Files 837 837
Lines 104244 104244
===========================================
+ Hits 63006 63073 +67
+ Misses 33661 33618 -43
+ Partials 7577 7553 -24
Flags with carried forward coverage won't be shown. Click here to find out more. |
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.
👏 ❤️
Otherwise CI builds were failing with :
failing CI job : https://ci.status.im/blue/organizations/jenkins/status-go%2Fprs%2Fandroid/detail/PR-6612/13/pipeline/
I tried to build manually on
linux-02and got the same failure, also this build directory was absent.also fixes : #6579