aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2023-03-23 11:20:56 -0300
committerEuAndreh <eu@euandre.org>2023-03-23 11:21:01 -0300
commit86c08fe09b44982e64a16088dc39de5de777103c (patch)
tree4db73c93ba76ff9ba74eb233450a88db6f291bb1 /Makefile
parentMakefile: Put check targets at the end (diff)
downloadpackage-repository-86c08fe09b44982e64a16088dc39de5de777103c.tar.gz
package-repository-86c08fe09b44982e64a16088dc39de5de777103c.tar.xz
Makefile: Add architecture to check target name
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 5 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 58fdcef..a81f2a8 100644
--- a/Makefile
+++ b/Makefile
@@ -110,10 +110,12 @@ clean:
HTTP-REMOTE = 'https://euandre.org/s/package-repository'
GIT-REMOTE = 'git://euandre.org/package-repository'
-check-ubuntu-deb:
+check-ubuntu-x86_64-deb:
sh tests/vm-check.sh -x -H ubuntu-x86_64-headless -r $(HTTP-REMOTE) -t deb
-check-ubuntu-homebrew:
+check-ubuntu-x86_64-homebrew:
sh tests/vm-check.sh -x -H ubuntu-x86_64-headless -r $(GIT-REMOTE) -t homebrew
-check: all check-ubuntu-deb check-ubuntu-homebrew
+check-ubuntu: check-ubuntu-x86_64-deb check-ubuntu-x86_64-homebrew
+
+check: all check-ubuntu