summaryrefslogtreecommitdiff
path: root/server/test/Makefile
AgeCommit message (Collapse)Author
2022-11-25Extend docker testing framework to test against Emacs versionsVedang Manerikar
Until this commit, docker-based local testing only checked whether the epdfinfo server compiled correctly. With this commit, local testing now also runs elisp tests against the different versions of Emacs we currently support. All versions of Emacs are run on Ubuntu at the moment, but going forward I expect that we will add more operating system variants to this matrix as well. As test coverage increases, this will help automate away a lot of the tests! Relates to: #130
2022-10-06Add make targets to start / stop the podman VMVedang Manerikar
This is just a convenience wrapper for me
2022-10-06Speed up server testing by keeping the containers aroundVedang Manerikar
This allows re-using containers, saving a tremendous amount of time. The drawback here is that any environment change (on the docker / podman containers side) is not detected. The way to deal with this will be to create a process around major releases where I delete all the containers and re-test from scratch. Relates to: #130
2022-07-21Fix: Dockerfile for ubuntu-18/20 needs fix-missingVedang Manerikar
The output on the terminal suggested using fix-missing, which seems to fix the sources and find the packages :)
2022-07-20Test and Documentation changes: dockerfiles and readmeVedang Manerikar
README changes: - Add documentation on how to test / add support for your favorite operating system. Dockerfile changes: - Rename Dockerfile.in to Dockerfile.common.in, to make the name clearer. - Add make as a prerequisite in the Dockerfile. + It is needed to run make commands and is not available in some of these images. - Add make targets for printing operating systems that are not yet supported in Docker testing. + This should help contributors with adding support for testing on these systems. + New targets are `server-test-supported` and `server-test-unsupported` at the top level. Related to: #130
2022-05-21Add a Makefile target to clean docker containersVedang Manerikar
No point leaving dead containers lying around. Relates to: #98
2022-05-21Create named containers when running docker/podman testsVedang Manerikar
This simplifies container operations and ensures that we don't have dead containers hanging around. Relates to: #98
2021-05-30Update all the docker template filesVedang Manerikar
This work is part of the effort to fix the `test-all` Make target. When I complete all the work, I will update the relevant Circle CI scripts to run these tests as well. Note also that I personally use podman instead of docker, so I'm replacing docker with podman in the scripts. Someday, I might find a clever way to let both co-exist
2017-09-10Add docker tests for the autobuild scriptAndreas Politz