summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorFelix Boerner <ich@felix-boerner.de>2024-04-06 18:10:10 +0200
committerFelix Boerner <ich@felix-boerner.de>2024-04-06 18:10:10 +0200
commit8e3eb5eba73f186b382f564038fa83a3073700bb (patch)
treea127e5b253bbd60d0e797a4b98ef158d5526cdaf /Makefile
parent40104704858f9a90328cc35c07d870d1b2ba1ca1 (diff)
ci: use makefile for testscommonmark_test
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile30
1 files changed, 30 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..9f4eb63
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,30 @@
+SHELL = /bin/bash
+.SHELLFLAGS = -e -o pipefail -c
+
+.PHONY: hugo-server-example-site-with-image
+hugo-server-example-site-with-image:
+ hugo server --source tests/exampleSiteWithImage --themesDir=../../../
+
+.PHONY: hugo-server-example-site-with-video
+hugo-server-example-site-with-video:
+ hugo server --source tests/exampleSiteWithVideo --themesDir=../../../
+
+.PHONY: sitespeed-io-example-site-with-image-desktop-mode
+sitespeed-io-example-site-with-image-desktop-mode:
+ rm --recursive --force tests/exampleSiteWithImage/sitespeed-result
+ docker compose --file tests/exampleSiteWithImage/docker-compose.desktop.yml up --exit-code-from sitespeed
+
+.PHONY: sitespeed-io-example-site-with-image-mobile-mode
+sitespeed-io-example-site-with-image-mobile-mode:
+ rm --recursive --force tests/exampleSiteWithImage/sitespeed-result
+ docker compose --file tests/exampleSiteWithImage/docker-compose.mobile.yml up --exit-code-from sitespeed
+
+.PHONY: sitespeed-io-example-site-with-video-desktop-mode
+sitespeed-io-example-site-with-video-desktop-mode:
+ rm --recursive --force tests/exampleSiteWithVideo/sitespeed-result
+ docker compose --file tests/exampleSiteWithVideo/docker-compose.desktop.yml up --exit-code-from sitespeed
+
+.PHONY: sitespeed-io-example-site-with-video-mobile-mode
+sitespeed-io-example-site-with-video-mobile-mode:
+ rm --recursive --force tests/exampleSiteWithVideo/sitespeed-result
+ docker compose --file tests/exampleSiteWithVideo/docker-compose.mobile.yml up --exit-code-from sitespeed