Skip to content
This repository was archived by the owner on Sep 17, 2025. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 10 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,18 +1,23 @@
SHELL = /bin/bash
SHELL = /bin/bash
ROOT_DIR = $(dir $(realpath $(firstword $(MAKEFILE_LIST))))

.PHONY: acceptance
acceptance:
@scripts/acceptance.sh
@$(ROOT_DIR)/scripts/acceptance.sh

.PHONY: github-actions-ci
github-actions-ci:
@scripts/github-actions-ci.sh
@$(ROOT_DIR)/scripts/github-actions-ci.sh

.PHONY: github-actions-ci-local
github-actions-ci-local:
docker run -it --rm \
-v $(shell pwd):/tmp/acceptance-testing \
-v $(ROOT_DIR):/tmp/acceptance-testing \
-w /tmp/acceptance-testing \
--privileged -v /var/run/docker.sock:/var/run/docker.sock \
--entrypoint=/bin/bash ubuntu:latest \
-c 'set +e; scripts/github-actions-ci.sh; echo "Exited $?. (Ctrl+D to exit shell)"; bash'
-c 'set +e; scripts/github-actions-ci.sh; echo "Exited $?. (Ctrl+D to exit shell)"; bash'

.PHONY: clean
clean:
/bin/rm -rf $(ROOT_DIR)/.acceptance