-
Notifications
You must be signed in to change notification settings - Fork 448
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
meta: use build-for in snap.yaml architecture #4150
Conversation
Codecov Report
❗ Your organization is not using the GitHub App Integration. As a result you may experience degraded service beginning May 15th. Please install the Github App Integration for your organization. Read more. @@ Coverage Diff @@
## main #4150 +/- ##
==========================================
+ Coverage 94.80% 94.84% +0.03%
==========================================
Files 648 648
Lines 54280 54292 +12
==========================================
+ Hits 51461 51494 +33
+ Misses 2819 2798 -21
... and 3 files with indirect coverage changes 📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
Signed-off-by: Callahan Kovacs <callahan.kovacs@canonical.com>
Signed-off-by: Callahan Kovacs <callahan.kovacs@canonical.com>
Signed-off-by: Callahan Kovacs <callahan.kovacs@canonical.com>
make lint
?pytest tests/unit
?Details
Previously, using
build-for: all
in a snapcraft project would causemeta/snap.yaml
to contain thebuild-on
architecture, due to this line from my first implementation of adding support for thearchitectures
keyword.Now,
build-for: all
will causemeta/snap.yaml
to usearchitectures: all
.Source
https://bugs.launchpad.net/snapcraft/+bug/1999580
https://forum.snapcraft.io/t/incorrect-architecture-with-snapcraft-7-x-and-build-for-build-on/34130
(CRAFT-1535)