-
Notifications
You must be signed in to change notification settings - Fork 24
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
fetch precompiled xk6 extension from grafana/xk6-sm
#966
Open
roobre
wants to merge
11
commits into
main
Choose a base branch
from
xk6-sm-repo
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
roobre
force-pushed
the
xk6-sm-repo
branch
5 times, most recently
from
October 30, 2024 10:47
22c0782
to
b932ad2
Compare
roobre
force-pushed
the
xk6-sm-repo
branch
5 times, most recently
from
November 12, 2024 16:22
5b083ab
to
7154d3f
Compare
roobre
force-pushed
the
xk6-sm-repo
branch
7 times, most recently
from
November 12, 2024 17:22
af9c4e7
to
9ee2e6a
Compare
Otherwise, it is not currently possible for goreleaser to access files created by `sm-k6`, as goreleaser wipes `dist` before running.
roobre
changed the title
wip: fetch precompiled xk6 extension from
fetch precompiled xk6 extension from Nov 13, 2024
grafana/xk6-sm
grafana/xk6-sm
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR removes the
sm
extension code from this repo and adjust Makefiles and Dockerfiles to pull k6 from https://github.com/grafana/xk6-sm.A bullet-point summary
$(DISTDIR)/$(OS)-$(ARCH)/sm-k6
targets have been added tocurl
k6 from grafana/xk6-sm releasessm-k6-native
is a convenient alias for the host's OS/ARCH, whilesm-k6
downloads sm-k6 for all known architecturestest
orpackage
targets. They can be, but as the package target does not depend on build, I followed that pattern.make sm-k6
is manually invoked in the pipeline.build
target needs to depend onsm-k6-native
. If we decide to not keep dependencies, we can remove this when we ditch goreleaser (details on why this was needed are on a comment).Part of https://github.com/grafana/synthetic-monitoring/issues/160