-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
FROM debian:bullseye | ||
|
||
RUN \ | ||
sed -n -e 's/^deb /deb-src /p' /etc/apt/sources.list >/etc/apt/sources.list.d/quick-lint-js-sources.list && \ | ||
apt-get update && \ | ||
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ | ||
build-essential \ | ||
ca-certificates \ | ||
clang-13 \ | ||
cmake \ | ||
git \ | ||
libc++-13-dev \ | ||
libc++abi-13-dev \ | ||
libc6-dev \ | ||
libstdc++-10-dev \ | ||
ninja-build \ | ||
python3 | ||
|
||
RUN rm -rf /var/lib/apt/lists/* |
7 changes: 7 additions & 0 deletions
7
.github/docker/monkey-github-builder-void-linux-musl-clang/Dockerfile
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
FROM ghcr.io/void-linux/void-musl | ||
RUN xbps-install -Syu || xbps-install -yu xbps \ | ||
&& xbps-install -yu \ | ||
&& xbps-install -y bash git cmake clang python3-codespell ninja \ | ||
&& xbps-remove -Oy | ||
|
||
|
13 changes: 13 additions & 0 deletions
13
.github/docker/monkey-github-builder-void-linux-musl-clang/README.md
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# monkey-github-builder-void-linux-musl-clang Docker image | ||
|
||
## Updating the Docker image | ||
|
||
Pick a version number for the new Docker image (e.g. `v2`), then run the | ||
following commands: | ||
|
||
$ docker build --tag ghcr.io/hrzlgnm/monkey-github-builder-void-linux-musl-clang:VERSION_NUMBER_HERE .github/docker/monkey-github-builder-void-linux-musl-clang/ | ||
$ docker login ghcr.io -u YOUR_GITHUB_USER_NAME_HERE | ||
$ docker push ghcr.io/hrzlgnm/monkey-github-builder-void-linux-musl-clang:VERSION_NUMBER_HERE | ||
|
||
Then, change the container tag in each workflow file in the .github/workflows/ | ||
directory to refer to your new version. |