From f6ebcbdc9ec22af4e97c9545dc245257737db029 Mon Sep 17 00:00:00 2001 From: Phillip Lord Date: Fri, 30 Aug 2019 23:13:09 +0100 Subject: Update travis scripts to use EVM Add all versions of Emacs 25 to 26 --- .travis.yml | 26 ++++++++------------------ 1 file changed, 8 insertions(+), 18 deletions(-) diff --git a/.travis.yml b/.travis.yml index 2b6e3fb..09000e1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,25 +1,15 @@ language: generic env: - matrix: - - EMACS=emacs24 - - EMACS=emacs-snapshot - + - EVM_EMACS=emacs-25.1-travis + - EVM_EMACS=emacs-25.2-travis + - EVM_EMACS=emacs-25.3-travis + - EVM_EMACS=emacs-26.1-travis + - EVM_EMACS=emacs-26.2-travis + - EVM_EMACS=emacs-git-snapshot-travis install: - - if [ "$EMACS" = 'emacs24' ]; then - sudo add-apt-repository -y ppa:cassou/emacs && - sudo apt-get -qq update && - sudo apt-get -qq -f install && - sudo apt-get -qq install emacs24 emacs24-el; - fi - - if [ "$EMACS" = 'emacs-snapshot' ]; then - sudo add-apt-repository -y ppa:ubuntu-elisp/ppa && - sudo apt-get -qq update && - sudo apt-get -qq -f install && - sudo apt-get -qq install emacs-snapshot && - sudo apt-get -qq install emacs-snapshot-el; - fi - + - curl -fsSkL https://gist.github.com/rejeep/ebcd57c3af83b049833b/raw > travis.sh && source ./travis.sh + - evm install $EVM_EMACS --use --skip script: - ./run_rust_emacs_tests.sh -- cgit v1.2.3 From 86bc286a20e63e5e75590884c0b7c5a8b8123ab3 Mon Sep 17 00:00:00 2001 From: Phillip Lord Date: Fri, 30 Aug 2019 23:26:36 +0100 Subject: Add specific distribution for EVM https://github.com/rejeep/evm/issues/125 --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 09000e1..20928e9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,3 +1,4 @@ +dist: trusty language: generic env: -- cgit v1.2.3 From 077cba734446e749378d7bb8382f2b246360e404 Mon Sep 17 00:00:00 2001 From: Phillip Lord Date: Sat, 31 Aug 2019 11:51:22 +0100 Subject: Add local docker based tests runner --- run_rust_emacs_tests_docker.sh | 21 +++++++++++++++++++++ test-by-cp | 7 +++++++ test-from-git | 7 +++++++ 3 files changed, 35 insertions(+) create mode 100755 run_rust_emacs_tests_docker.sh create mode 100644 test-by-cp create mode 100644 test-from-git diff --git a/run_rust_emacs_tests_docker.sh b/run_rust_emacs_tests_docker.sh new file mode 100755 index 0000000..606e53e --- /dev/null +++ b/run_rust_emacs_tests_docker.sh @@ -0,0 +1,21 @@ +#!/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 Local files with Emacs 24 (oldest)" +docker run -it --rm --name docker-cp -v `pwd`:/usr/src/app -w /usr/src/app --entrypoint=/bin/bash silex/emacs:24.5-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 + +echo "Testing commits with Emacs 24 (oldest)" +docker run -it --rm --name docker-cp -v `pwd`:/usr/src/app -w /usr/src/app --entrypoint=/bin/bash silex/emacs:24.5-dev ./test-from-git + + diff --git a/test-by-cp b/test-by-cp new file mode 100644 index 0000000..4fde115 --- /dev/null +++ b/test-by-cp @@ -0,0 +1,7 @@ +#!/bin/sh + +cd .. +mkdir copy +cd copy +cp -rf ../app/* . +./run_rust_emacs_tests.sh diff --git a/test-from-git b/test-from-git new file mode 100644 index 0000000..48f81e0 --- /dev/null +++ b/test-from-git @@ -0,0 +1,7 @@ +#!/bin/sh + +cd .. +mkdir git +cd git +git clone ../app . +./run_rust_emacs_tests.sh -- cgit v1.2.3