forked from neovim/neovim
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: containerize the external dependencies test
Cirrus ci automatically pushes/caches docker images, which makes containerization much simpler to handle. Moving this job to cirrus ci shortens the job by a minute, and reduces github actions CI usage by two minutes per PR.
- Loading branch information
Showing
3 changed files
with
36 additions
and
44 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
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
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,22 @@ | ||
FROM ubuntu:22.04 | ||
|
||
RUN apt-get update && \ | ||
apt-get install -y software-properties-common && \ | ||
add-apt-repository ppa:neovim-ppa/stable && \ | ||
apt-get install -y ninja-build \ | ||
gettext \ | ||
cmake \ | ||
unzip \ | ||
curl \ | ||
git \ | ||
libluajit-5.1-dev \ | ||
libmsgpack-dev \ | ||
libtermkey-dev \ | ||
libunibilium-dev \ | ||
libuv1-dev \ | ||
lua-filesystem \ | ||
lua-lpeg \ | ||
luajit \ | ||
lua-luv-dev \ | ||
libtree-sitter-dev \ | ||
libvterm-dev |