File: run_rust_emacs_tests_docker.sh

package info (click to toggle)
elpa-rust-mode 1.0.6-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 336 kB
  • sloc: lisp: 4,953; makefile: 38; sh: 8
file content (15 lines) | stat: -rwxr-xr-x 724 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

echo "Testing Local files with Emacs 26 (latest)"
docker run -it --rm --name docker-cp -v `pwd`:/usr/src/app -w /usr/src/app --entrypoint=/bin/bash  silex/emacs:26.2-dev ./test-by-cp

echo Testing Local files with Emacs 25
docker run -it --rm --name docker-cp -v `pwd`:/usr/src/app -w /usr/src/app --entrypoint=/bin/bash  silex/emacs:25.3-dev ./test-by-cp

echo "Testing commits with Emacs 26 (latest)"
docker run -it --rm --name docker-cp -v `pwd`:/usr/src/app -w /usr/src/app --entrypoint=/bin/bash  silex/emacs:26.2-dev ./test-from-git

echo Testing commits with Emacs 25
docker run -it --rm --name docker-cp -v `pwd`:/usr/src/app -w /usr/src/app --entrypoint=/bin/bash  silex/emacs:25.3-dev ./test-from-git