This file contains hidden or 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
git diff -z --name-only --diff-filter=ACMRT FEATURE_1..FEATURE_2 | xargs -0 git archive -o update.tgz FEATURE_2 -- |
This file contains hidden or 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
FROM jenkins/jenkins:lts | |
USER root | |
COPY ["entrypoint.sh", "/"] | |
RUN apt-get update && \ | |
apt-get install sudo && \ | |
chmod 755 /entrypoint.sh | |
ENTRYPOINT ["/bin/bash","-c","./entrypoint.sh"] |
This file contains hidden or 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
package org.example.longtext; | |
import java.io.IOException; | |
import java.nio.file.Files; | |
import java.nio.file.Path; | |
import java.nio.file.Paths; | |
import java.util.Objects; | |
import java.util.stream.Stream; | |
/** |