Skip to content

Commit

Permalink
WIP test
Browse files Browse the repository at this point in the history
  • Loading branch information
metawilm committed Jun 13, 2024
1 parent 66eb75e commit 7b41d5e
Show file tree
Hide file tree
Showing 3 changed files with 115 additions and 7 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/github-workflow-tests.lisp
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
(in-package :cl-user)

#+sbcl
(require :asdf)

(load "/tmp/ql-dir/quicklisp.lisp")
(quicklisp-quickstart:install)

(ql:quickload :closer-mop)
(ql:quickload :yacc)
(ql:quickload :cl-custom-hash-table)

#+(or abcl clisp ecl)
(ql:quickload :cl-fad)

#-allegro
(ql:quickload :ptester)

(load "/home/runner/work/cl-python/cl-python/clpython.asd")

(ql:quickload :clpython)

(asdf:test-system :clpython)
80 changes: 80 additions & 0 deletions .github/workflows/run-tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
name: build & test
on:
push:
branches:
- master
- dev
jobs:

install_ecl:
name: Download and Install ECL
runs-on: ubuntu-latest
steps:
- run: |
cd /tmp
mkdir ecl-dir
cd ecl-dir
wget https://common-lisp.s3.eu-central-1.amazonaws.com/ecl-23.9.9.tgz
- name: Upload ECL artifact
uses: actions/upload-artifact@v4
with:
name: ecl-artifact
path: /tmp/ecl-dir/ecl-23.9.9.tgz

install_quicklisp:
name: Install QuickLisp
runs-on: ubuntu-latest
steps:
- run: |
cd /tmp
mkdir ql-dir
cd ql-dir
wget -q https://beta.quicklisp.org/quicklisp.lisp
chmod -R a+rwx /tmp/ql-dir
- name: Upload Quicklisp artifact
uses: actions/upload-artifact@v4
with:
name: ql-artifact
path: /tmp/ql-dir

run_test_suites:
name: Test on ${{ matrix.scenario }}
runs-on: ubuntu-latest
strategy:
matrix:
scenario: [ecl, sbcl, clisp]
needs: [install_quicklisp]
steps:
- uses: actions/checkout@v4

- uses: actions/download-artifact@v4
with:
name: ql-artifact
path: /tmp/ql-dir

- if: matrix.scenario == 'ecl'
uses: actions/download-artifact@v4
with:
name: ecl-artifact
path: /tmp/ecl-dir/
- if: matrix.scenario == 'ecl'
run: |
cd /tmp/ecl-dir/
tar -xzf ecl-23.9.9.tgz
cd ecl-23.9.9
./configure
make -j 8
sudo make install
- if: matrix.scenario == 'ecl'
run: |
ecl --shell /home/runner/work/cl-python/cl-python/.github/workflows/github-workflow-tests.lisp
- if: matrix.scenario == 'sbcl'
run: |
sudo apt-get install sbcl
sbcl --script /home/runner/work/cl-python/cl-python/.github/workflows/github-workflow-tests.lisp
- if: matrix.scenario == 'clisp'
run: |
sudo apt-get install clisp
clisp /home/runner/work/cl-python/cl-python/.github/workflows/github-workflow-tests.lisp
19 changes: 12 additions & 7 deletions clpython.asd
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
(eval-when (:compile-toplevel)
(error "This ASDF file should be run interpreted."))

(eval-when (compile load eval)
(import '(asdf:defsystem asdf:load-op asdf:test-op)))

;;; CL-Python is split into several ASDF systems, to make it possible to load
;;; specific components -- in particular, to load the compiler or parser without
Expand All @@ -31,7 +33,7 @@
(muffle-warning c))))))
(funcall thunk)))

(defsystem "clpython/basic"
(asdf:defsystem "clpython/basic"
:description "CLPython package and utils"
:depends-on ("closer-mop")
:serial t
Expand All @@ -53,7 +55,7 @@
(when (asdf:find-system "yacc" nil)
(pushnew :have-cl-yacc *features*))

(defsystem "clpython/parser"
(asdf:defsystem "clpython/parser"
:description "Python parser, code walker, and pretty printer"
:depends-on ("clpython/basic"
"closer-mop"
Expand All @@ -68,7 +70,7 @@
(:file "walk" )
(:file "pprint" )))))

(defsystem "clpython/compiler"
(asdf:defsystem "clpython/compiler"
:description "Python compiler"
:depends-on ("clpython/basic" "clpython/parser" "clpython/runtime" "closer-mop")
:serial t
Expand All @@ -81,7 +83,7 @@
(:file "generator" )
(:file "optimize" )))))

(defsystem "clpython/runtime"
(asdf:defsystem "clpython/runtime"
:description "Python runtime environment"
:depends-on ("clpython/basic" "closer-mop" #+(or abcl clisp ecl) "cl-custom-hash-table" "cl-fad")
:components ((:module "runtime"
Expand All @@ -96,7 +98,7 @@
(:file "run" )
(:file "import" )))))

(defsystem "clpython/lib"
(asdf:defsystem "clpython/lib"
:description "Python module library"
:depends-on ("clpython/basic" "clpython/runtime" "clpython/compiler" #| TODO: remove compiler dep |#)
:components ((:module "lib"
Expand Down Expand Up @@ -141,7 +143,7 @@
(:file "time" :depends-on ("lsetup"))
(:file "_weakref" :depends-on ("lsetup"))))))

(defsystem "clpython/contrib"
(asdf:defsystem "clpython/contrib"
:description "CLPython contributions and experiments"
:depends-on ("clpython/basic" "clpython/runtime" "clpython/compiler")
:components ((:module "contrib"
Expand Down Expand Up @@ -193,4 +195,7 @@
(:file "mod-string-test")
(:file "mod-math-test")
(:file "mod-operator-test"))))
:perform (test-op (o c) (symbol-call :clpython.test :run-tests)))
:perform (test-op (o c)
(if (symbol-call :clpython.test :run-tests)
(format t "clpython/test test-op: No test failures.~%")
(error "clpython/test test-op: Some test failures."))))

0 comments on commit 7b41d5e

Please sign in to comment.