File: run-on-server.lisp

package info (click to toggle)
acl2 8.6%2Bdfsg-2
  • links: PTS
  • area: main
  • in suites: trixie
  • size: 1,111,420 kB
  • sloc: lisp: 17,818,294; java: 125,359; python: 28,122; javascript: 23,458; cpp: 18,851; ansic: 11,569; perl: 7,678; xml: 5,591; sh: 3,976; makefile: 3,833; ruby: 2,633; yacc: 1,126; ml: 763; awk: 295; csh: 233; lex: 197; php: 178; tcl: 49; asm: 23; haskell: 17
file content (100 lines) | stat: -rw-r--r-- 3,806 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
(defparameter *this-dir*
  (if *load-truename*
      (make-pathname :name nil :type nil :defaults *load-truename*)
      ;; for slime:
      #P"/home/testgrid/cl+ssl/cl-plus-ssl/test/run-on-many-lisps-and-openssls/"))

(pushnew "/home/testgrid/cl-test-grid/" asdf:*central-registry* :test #'equal)

(load (merge-pathnames "run-on-many-lisps-and-openssls.lisp" *this-dir*))


(defparameter *abcl-1.5.0*
  (make-instance 'lisp-exe:abcl
                 :java-exe-path "java"
                 :abcl-jar-path "/home/testgrid/lisps/abcl-bin-1.5.0/abcl.jar"))

(defparameter *acl-10.0*
  (make-instance 'lisp-exe:acl
                 :exe-path "/home/testgrid/lisps/acl100/alisp"))

(defparameter *acl-10.0m*
  (make-instance 'lisp-exe:acl
                 :exe-path "/home/testgrid/lisps/acl100/mlisp"))

(defparameter *acl-10.0-smp*
  (make-instance 'lisp-exe:acl
                 :exe-path "/home/testgrid/lisps/acl100-smp/alisp"))

(defparameter *acl-10.0m-smp*
  (make-instance 'lisp-exe:acl
                 :exe-path "/home/testgrid/lisps/acl100-smp/mlisp"))

(defparameter *ccl-1.11.5*
  (make-instance 'lisp-exe:ccl
                 :exe-path "/home/testgrid/lisps/ccl-1.11.5/lx86cl"))

(defparameter *sbcl-1.3.21*
  (make-instance 'lisp-exe:sbcl
                 :exe-path "/home/testgrid/lisps/sbcl-bin-1.3.21/run.sh"))

(defparameter *cmucl-2016-12*
  (make-instance 'lisp-exe:cmucl
                 :exe-path "/home/testgrid/lisps/cmucl-2016-12/bin/lisp"))

(defparameter *cmucl-2016-12*
  (make-instance 'lisp-exe:cmucl
                 :exe-path "/home/testgrid/lisps/cmucl-2016-12/bin/lisp"))

(defparameter *cmucl-21d*
  (make-instance 'lisp-exe:cmucl
                 :exe-path "/home/testgrid/lisps/cmucl-21d/bin/lisp"))

(defparameter *ecl-16.1.2-bytecode*
  (make-instance 'lisp-exe:ecl
                 :exe-path "/home/testgrid/lisps/ecl-bin-16.1.2/bin/ecl"
                 :compiler :bytecode))

(defparameter *ecl-16.1.2-lisp-to-c*
  (make-instance 'lisp-exe:ecl
                 :exe-path "/home/testgrid/lisps/ecl-bin-16.1.2/bin/ecl"
                 :compiler :lisp-to-c))

(defparameter *clisp*
  (make-instance 'lisp-exe:clisp :exe-path "/usr/bin/clisp"))

(run-on-many-lisps-and-openssls:clean-fasls (merge-pathnames "workdir/" *this-dir*))

(let ((*print-pretty* t))
  (format t "~%~S~%"
          (time
           (run-on-many-lisps-and-openssls:run
            :test-run-description '(:lib-world "quicklisp 2019-01-07 + cl+ssl.head"
                                    :contact-email "avodonosov@yandex.ru")
            :test-run-dir (merge-pathnames "workdir/" *this-dir*)
            :quicklisp-dir (merge-pathnames "quicklisp/" (user-homedir-pathname))
            ;; if we want the cl+ssl from the parent folder
            :cl+ssl-location (uiop:pathname-parent-directory-pathname
                               (uiop:pathname-parent-directory-pathname *this-dir*))
            ;; if we want the cl+ssl version from quicklisp
            ;:cl+ssl-location  nil

            :lisps (list *sbcl-1.3.21*
                         *ccl-1.11.5*
                         *abcl-1.5.0*
                         *acl-10.0* *acl-10.0m* *acl-10.0-smp* *acl-10.0m-smp*
                         *clisp*
                         *ecl-16.1.2-bytecode*
                         *ecl-16.1.2-lisp-to-c*
                         *cmucl-21d*
                         )

            :openssl-releases '("openssl-0.9.8zh"
                                "openssl-1.0.0s"
                                "openssl-1.0.2q"
                                "openssl-1.1.0j"
                                "openssl-1.1.1a"
                                )
            :openssl-releases-dir (merge-pathnames "openssl-releases/bin/"
                                                   *this-dir*)))))