-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
30 lines (25 loc) · 844 Bytes
/
Copy pathMakefile
File metadata and controls
30 lines (25 loc) · 844 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
all: tests
SHELL := /bin/bash
.PHONY: \
all \
test_docker_installed_versions \
test_os_version \
tests
test_docker_installed_versions:
Rscript -e "packageVersion('languageserver')" | egrep "0\.[0-9]+\.[0-9]+"
apt-cache policy fd-find | grep "Installed: 8"
apt-cache policy python3-venv | grep "Installed: 3.10"
apt-cache policy ripgrep | grep "Installed: 13"
apt-cache policy universal-ctags | grep "Installed: 5"
apt-cache policy wget | grep "Installed: 1"
\. "${HOME}/.nvm/nvm.sh" && node --version | grep "v22"
\. "${HOME}/.nvm/nvm.sh" && npm --version | grep "^10"
nvim --version | grep "NVIM v0.11"
pip freeze | grep rope==1
test_os_version:
cat /etc/os-release | grep "22.04"
cat /etc/os-release | grep "Jammy Jellyfish"
cat /etc/os-release | grep "LTS"
tests: \
test_docker_installed_versions \
test_os_version