Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin' into nightly-enterprise
Browse files Browse the repository at this point in the history
  • Loading branch information
guicaulada committed Oct 11, 2023
2 parents 11c8a20 + a740af1 commit 253123c
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
10 changes: 10 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
version: 2
updates:
- package-ecosystem: "gomod"
directory: "/"
schedule:
interval: "weekly"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
2 changes: 1 addition & 1 deletion containers/opts_grafana.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
)

const (
DefaultGoVersion = "1.20.8"
DefaultGoVersion = "1.20.10"
)

// GrafnaaOpts are populated by the 'GrafanaFlags' flags.
Expand Down
1 change: 1 addition & 0 deletions pipelines/package.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ func PackageFiles(ctx context.Context, d *dagger.Client, opts PackageOpts) (map[
".yarn": src.Directory(".yarn").WithoutDirectory("/src/.yarn/cache"),
"packages": src.Directory("packages"),
"plugins-bundled": src.Directory("plugins-bundled"),
"public": src.Directory("public"),
},
Files: map[string]*dagger.File{
"package.json": src.File("package.json"),
Expand Down
1 change: 0 additions & 1 deletion pipelines/rpm.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ func RPM(ctx context.Context, d *dagger.Client, args PipelineArgs) error {
"/sbin/service",
"fontconfig",
"freetype",
"urw-fonts",
},
ExtraArgs: []string{
"--rpm-posttrans=/src/packaging/rpm/control/posttrans",
Expand Down
10 changes: 0 additions & 10 deletions scripts/drone_publish_tag_pro.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ dagger run --silent go run ./cmd \
--yarn-cache=${YARN_CACHE_FOLDER} \
--distro=linux/amd64 \
--distro=linux/arm64 \
--distro=linux/arm/v6 \
--distro=linux/arm/v7 \
--distro=darwin/amd64 \
--distro=windows/amd64 \
--env GO_BUILD_TAGS=pro \
Expand Down Expand Up @@ -42,14 +40,6 @@ dagger run --silent go run ./cmd deb \
--destination=${local_dst} \
--gcp-service-account-key-base64=${GCP_KEY_BASE64} > debs.txt

# Use the armv7 package to build the `rpi` specific version.
dagger run --silent go run ./cmd deb \
$(cat assets.txt | grep tar.gz | grep -v docker | grep -v sha256 | grep -v windows | grep -v darwin | grep arm-7 | awk '{print "--package=" $0}') \
--name=grafana-pro-rpi \
--checksum \
--destination=${local_dst} \
--gcp-service-account-key-base64=${GCP_KEY_BASE64} >> debs.txt

# Build a docker image for all .tar.gz packages
dagger run --silent go run ./cmd docker \
$(cat assets.txt | grep tar.gz | grep -v docker | grep -v sha256 | grep -v windows | grep -v darwin | grep -v arm-6 | awk '{print "--package=" $0}') \
Expand Down

0 comments on commit 253123c

Please sign in to comment.