一键导入
package
// Rebuild the SkyWalking distribution and OAP Docker image after source changes. Use before running e2e tests so the image reflects your code changes. Avoids the "image looks updated but runtime has stale jars" trap.
// Rebuild the SkyWalking distribution and OAP Docker image after source changes. Use before running e2e tests so the image reflects your code changes. Avoids the "image looks updated but runtime has stale jars" trap.
Add a new monitoring target / layer to SkyWalking OAP. Orients you to the OAL / MAL / LAL / SpanListener / SegmentListener extension points, the UI template + submodule touchpoints, the docs set that must move together, and the cross-cutting traps that don't live in any one skill.
Verify, commit, and push changes on a PR branch. Runs pre-flight checks (compile, checkstyle, license headers) before every push. Also creates the PR if one doesn't exist yet.
Run SkyWalking E2E tests locally
Download and inspect CI e2e test logs from GitHub Actions artifacts. Use when investigating e2e test failures in CI.
Generate bytecode classes from DSL scripts (MAL, OAL, LAL, Hierarchy). Runs the compiler and dumps .class files for inspection.
Build SkyWalking OAP server, run javadoc checks, and verify checkstyle. Use to validate changes before submitting a PR.
| name | package |
| description | Rebuild the SkyWalking distribution and OAP Docker image after source changes. Use before running e2e tests so the image reflects your code changes. Avoids the "image looks updated but runtime has stale jars" trap. |
| argument-hint | [oap|all|dist-only] |
Rebuilding the Docker image after a source-code change has a two-step dependency: rebuild the dist tarball, then rebuild the image. Skipping the first step silently produces an image with stale jars — the Docker build still "succeeds," the image has a fresh timestamp, but the embedded jar is the one from your previous build.
make docker.oap in the root Makefile is defined as:
docker.% push.docker.%: $(CONTEXT)/$(DIST) $(SW_ROOT)/docker/%/*
$(DOCKER_RULE)
It depends on $(CONTEXT)/$(DIST) (the dist tarball) as a file prerequisite. If that tarball already exists, make does not regenerate it — it just copies whatever is on disk into dist/docker_build/oap/ and runs docker buildx build. There is no dependency that rebuilds the tarball from source.
Only make docker triggers the full chain (init → build.all → docker.all). So:
| Command | Rebuilds source? | Rebuilds tarball? | Rebuilds image? |
|---|---|---|---|
./mvnw -pl <module> package | only that module | no | no |
./mvnw -pl apm-dist -am package -Pbackend,dist | all backend deps + dist | yes | no |
make docker.oap | no | no (uses whatever's on disk) | yes |
make docker | yes (build.all) | yes | yes (docker.all) |
flatten:flatten — always run it before package/installSkyWalking's poms use ${revision} as a placeholder version (e.g., 10.5.0-SNAPSHOT). The flatten-maven-plugin resolves ${revision} into concrete versions and writes a .flattened-pom.xml. Without it:
${revision} in their coordinates and cannot be resolved as dependencies.apm-dist) see an inconsistent dependency graph.-pl <module> -am may succeed in isolation but fail or pull in stale transitive artifacts when the same module is consumed by another build invocation in the same session.Always run flatten:flatten in the same goal chain as package or install. The CI dist-tar job and the compile skill both do this. Example:
./mvnw clean flatten:flatten package -Pbackend,dist -DskipTests
Not optional — treat it as part of package.
# Recommended: full chain
make docker
or, faster and equivalent for backend-only changes (skips UI):
./mvnw -pl apm-dist -am -o clean flatten:flatten package -Pbackend,dist -DskipTests -Dcheckstyle.skip=true -Dmaven.javadoc.skip=true
make docker.oap
Do not just run make docker.oap after a code edit — the image will look rebuilt but your change will not be in the jars.
Do not skip flatten:flatten — see the section above.
apm-dist/, log4j2.xml)./mvnw -pl apm-dist -am -o clean flatten:flatten package -Pbackend,dist -DskipTests
make docker.oap
docker/oap/*)The tarball is untouched, so make docker.oap alone is correct:
make docker.oap
Docker's "image created" timestamp updates even when the content is stale (because --no-cache is used). Don't trust the timestamp. Verify the jar contents directly:
# Copy the jar out of the container
docker cp <container-name>:/skywalking/oap-libs/<module>-<version>.jar /tmp/verify.jar
# Extract the specific class
cd /tmp && jar -xf verify.jar <path/to/YourClass.class>
# Grep for a string your fix introduced (unique literal, method name, etc.)
grep -oa "myFixSignature" <path/to/YourClass.class>
If grep finds nothing, the image does not contain your fix — you forgot to rebuild the dist. Re-run with the correct chain.
make docker.oap after ./mvnw package: The module jar is fresh in oap-server/.../target/, but the dist tarball at dist/apache-skywalking-apm-bin.tar.gz is untouched. Image uses the old jar.make docker mid-flight: leaves the dist half-rebuilt. Re-run make docker or delete dist/ first.--no-cache), but if you suspect it, run docker buildx prune.docker images shows when the image was tagged, not when its content actually changed. A no-op rebuild still updates the timestamp.docker buildx build sits silent for minutes with no stdout, kill it and retry. The buildx container driver occasionally stalls; a restart is faster than waiting.After any Java source edit that affects code shipped in oap-libs/, run one of:
make docker (full, safest)./mvnw -pl apm-dist -am -o package -Pbackend,dist -DskipTests -Dcheckstyle.skip=true && make docker.oap (fast)Then verify the fix is in the image's jar before running e2e. Don't assume.