From 6642c7d717313a81a654a922ae8df10d302f0eef Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Tue, 7 Apr 2020 10:14:55 -0700 Subject: Ensure ~/.emacs.d/data/ exists when testing ‘oni-core’ If the directory doesn’t exist, ‘recentf-mode’ will try to save the recent file list and fail because Emacs automatically asks if the directory should be created. Since the test is running in a non-interactive environment, it’ll fail to read the user’s answer. --- .gitlab-ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6812273..3d22a74 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -265,6 +265,8 @@ integration-test-oni-core: image: registry.gitlab.com/ryuslash/emacs-config dependencies: - package + before_script: + - mkdir -p ~/.emacs.d/data/ script: make integration-test-oni-core TEST_ARCHIVE=$(realpath bin/) integration-test-oni-cpp: -- cgit v1.2.3-54-g00ecf