Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dwolla/jenkins-agent-docker-sbt
Docker image based on Dwolla’s core Jenkins Agent Docker image making sbt available to Jenkins jobs.
https://github.com/dwolla/jenkins-agent-docker-sbt
Last synced: about 10 hours ago
JSON representation
Docker image based on Dwolla’s core Jenkins Agent Docker image making sbt available to Jenkins jobs.
- Host: GitHub
- URL: https://github.com/dwolla/jenkins-agent-docker-sbt
- Owner: Dwolla
- License: mit
- Created: 2016-09-14T23:17:26.000Z (about 8 years ago)
- Default Branch: main
- Last Pushed: 2023-11-10T17:59:07.000Z (12 months ago)
- Last Synced: 2024-04-15T00:16:58.484Z (7 months ago)
- Language: Dockerfile
- Homepage: https://hub.docker.com/r/dwolla/jenkins-agent-sbt/
- Size: 22.5 KB
- Stars: 1
- Watchers: 17
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Jenkins Agent with sbt
[![](https://images.microbadger.com/badges/image/dwolla/jenkins-agent-sbt.svg)](https://microbadger.com/images/dwolla/jenkins-agent-sbt)
[![license](https://img.shields.io/github/license/dwolla/jenkins-agent-docker-sbt.svg?style=flat-square)](https://github.com/Dwolla/jenkins-agent-docker-sbt/blob/master/LICENSE)Docker image based on Dwolla’s [sbt-version-cache](https://github.com/Dwolla/docker-sbt-version-cache) and [core Jenkins Agent](https://github.com/Dwolla/jenkins-agent-docker-core) images, making [sbt](http://scala-sbt.org) available to Jenkins jobs.
GitHub Actions will build the Docker images for multiple supported architectures.
## Local Development
With [yq](https://kislyuk.github.io/yq/) installed, to build this image locally run the following command:
```bash
make \
CORE_JDK11_TAG=$( curl --silent https://raw.githubusercontent.com/Dwolla/jenkins-agents-workflow/main/.github/workflows/build-docker-image.yml | \
yq .on.workflow_call.inputs.CORE_TAG.default) \
all
```Alternatively, without [yq](https://kislyuk.github.io/yq/) installed, refer to the CORE_TAG default values defined in [jenkins-agents-workflow](https://github.com/Dwolla/jenkins-agents-workflow/blob/main/.github/workflows/build-docker-image.yml) and run the following command:
`make CORE_JDK11_TAG= all`