Skip to content

Commit 857de42

Browse files
authored
Merge branch 'main' into repo_sync
2 parents 4281e4c + 6233e14 commit 857de42

File tree

11 files changed

+67
-16
lines changed

11 files changed

+67
-16
lines changed

.github/release.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# .github/release.yml
2+
3+
changelog:
4+
categories:
5+
- title: 🏕 Features
6+
labels:
7+
- "*"
8+
exclude:
9+
labels:
10+
- chore
11+
- dependencies
12+
- title: 🧹 Chore
13+
labels:
14+
- chore
15+
- title: 👒 Dependencies
16+
labels:
17+
- dependencies

.github/workflows/acceptance-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ jobs:
1717
with:
1818
persist-credentials: false
1919
uses: actions/checkout@v4
20-
- uses: jdx/mise-action@7a111ead46986ccad89a74ad013ba2a7c08c9e67 # v2.1.1
20+
- uses: jdx/mise-action@c94f0bf9e520b150e34c017db785461f7e71c5fb # v2.1.1
2121
- name: Run acceptance tests
2222
run: mise run acceptance-test

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- uses: actions/checkout@v4
1717
with:
1818
persist-credentials: false
19-
- uses: jdx/mise-action@7a111ead46986ccad89a74ad013ba2a7c08c9e67 # v2.1.1
19+
- uses: jdx/mise-action@c94f0bf9e520b150e34c017db785461f7e71c5fb # v2.1.1
2020
- name: Cache local Maven repository
2121
uses: actions/cache@v4
2222
with:

.github/workflows/github-pages.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
persist-credentials: false
3737
fetch-tags: "true"
3838
fetch-depth: 0
39-
- uses: jdx/mise-action@7a111ead46986ccad89a74ad013ba2a7c08c9e67 # v2.1.1
39+
- uses: jdx/mise-action@c94f0bf9e520b150e34c017db785461f7e71c5fb # v2.1.1
4040
with:
4141
cache: "false"
4242
- name: Prepare GitHub Pages

.github/workflows/lint-rest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ on: [pull_request]
66
permissions: {}
77

88
jobs:
9-
acceptance-tests:
9+
lint:
1010
runs-on: ubuntu-24.04
1111
steps:
1212
- name: Check out
1313
with:
1414
persist-credentials: false
1515
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
16-
- uses: jdx/mise-action@7a111ead46986ccad89a74ad013ba2a7c08c9e67 # v2.1.1
16+
- uses: jdx/mise-action@c94f0bf9e520b150e34c017db785461f7e71c5fb # v2.1.1
1717
- name: Lint
1818
run: mise run lint-rest

.github/workflows/native-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ jobs:
1717
with:
1818
persist-credentials: false
1919
uses: actions/checkout@v4
20-
- uses: jdx/mise-action@7a111ead46986ccad89a74ad013ba2a7c08c9e67 # v2.1.1
20+
- uses: jdx/mise-action@c94f0bf9e520b150e34c017db785461f7e71c5fb # v2.1.1
2121
- name: Run native tests
2222
run: mise run native-test
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
name: Build
3+
4+
on:
5+
push:
6+
branches: ["main"]
7+
pull_request:
8+
branches: ["main"]
9+
10+
permissions: {}
11+
12+
jobs:
13+
build:
14+
runs-on: ubuntu-24.04
15+
steps:
16+
- uses: actions/checkout@v4
17+
with:
18+
persist-credentials: false
19+
- uses: jdx/mise-action@c94f0bf9e520b150e34c017db785461f7e71c5fb # v2.1.1
20+
- name: Cache local Maven repository
21+
uses: actions/cache@v4
22+
with:
23+
path: ~/.m2/repository
24+
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
25+
restore-keys: |
26+
${{ runner.os }}-maven-
27+
- name: Run the Maven verify phase
28+
run: mise run build-release

docs/content/getting-started/quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ standalone HTTP server.
5555
{{< hint type=note >}}
5656

5757
If you do not use the protobuf exposition format, you can
58-
[exclude]({{< relref "quickstart.md#exclude-protobuf-exposition-format" >}})
58+
[exclude]({{< relref "../exporters/formats.md#exclude-protobuf-exposition-format" >}})
5959
it from the dependencies.
6060

6161
{{< /hint >}}

integration-tests/it-exporter/it-exporter-servlet-jetty-sample/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
Jetty Sample for the Exporter Integration Test
1717
</description>
1818
<properties>
19-
<jetty-server.version>12.0.19</jetty-server.version>
19+
<jetty-server.version>12.0.20</jetty-server.version>
2020
<java.version>17</java.version>
2121
</properties>
2222

mise.toml

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,13 @@ PROTO_GENERATION = "true"
66
"go:github.com/gohugoio/hugo" = "latest"
77
"go:github.com/grafana/oats" = "latest"
88
java = "temurin-17.0.13+11"
9-
lychee = "latest"
9+
lychee = "latest"
1010
protoc = "latest"
1111

1212
[tasks.ci]
1313
description = "CI Build"
14-
run = [
15-
"./mvnw clean install",
16-
# just to check if javadoc can be generated
17-
"./mvnw javadoc:javadoc -P javadoc"
18-
]
19-
env = { REQUIRE_PROTO_UP_TO_DATE = "true" }
14+
run = "./mvnw clean install"
15+
env.REQUIRE_PROTO_UP_TO_DATE = "true"
2016

2117
[tasks.format]
2218
description = "format source code"
@@ -80,6 +76,11 @@ run = "./scripts/set-release-version-github-pages.sh"
8076
description = "Prepare GitHub pages"
8177
depends = ["javadoc", "set-gh-pages-version"]
8278

79+
[tasks.gh-pages-dev]
80+
description = "Build GitHub pages for dev"
81+
run = "hugo server -D"
82+
dir = "docs"
83+
8384
[tasks.build-gh-pages]
8485
description = "Build GitHub pages"
8586
# For maximum backward compatibility with Hugo modules
@@ -90,6 +91,11 @@ run = [
9091
"echo 'ls ./public/api' && ls ./public/api"
9192
]
9293

94+
[tasks.build-release]
95+
description = "Build release"
96+
run = "./scripts/build-release.sh"
97+
env.TAG = "1.4.0-SNAPSHOT"
98+
9399
[settings]
94100
# to get lock file support and for go backend
95101
experimental = true

0 commit comments

Comments
 (0)