Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
asdf
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Gary Palter
asdf
Commits
b4815f7c
Commit
b4815f7c
authored
3 years ago
by
Eric Timmons
Committed by
Robert Goldman
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Add test-docker-lisp, td, and test-docker-repl to Makefile
Some useful helpers for testing locally using Docker.
parent
2bb8c167
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Makefile
+12
-0
12 additions, 0 deletions
Makefile
with
12 additions
and
0 deletions
Makefile
+
12
−
0
View file @
b4815f7c
...
@@ -78,6 +78,9 @@ SBCL ?= sbcl
...
@@ -78,6 +78,9 @@ SBCL ?= sbcl
SCL
?=
scl
SCL
?=
scl
XCL
?=
xcl
XCL
?=
xcl
# If you need to sudo in order to use docker, modify this.
DOCKER
?=
docker
header_lisp
:=
header.lisp
header_lisp
:=
header.lisp
driver_lisp
:=
uiop/package.lisp uiop/common-lisp.lisp uiop/utility.lisp uiop/version.lisp uiop/os.lisp uiop/pathname.lisp uiop/filesystem.lisp uiop/stream.lisp uiop/image.lisp uiop/lisp-build.lisp uiop/launch-program.lisp uiop/run-program.lisp uiop/configuration.lisp uiop/backward-driver.lisp uiop/driver.lisp
driver_lisp
:=
uiop/package.lisp uiop/common-lisp.lisp uiop/utility.lisp uiop/version.lisp uiop/os.lisp uiop/pathname.lisp uiop/filesystem.lisp uiop/stream.lisp uiop/image.lisp uiop/lisp-build.lisp uiop/launch-program.lisp uiop/run-program.lisp uiop/configuration.lisp uiop/backward-driver.lisp uiop/driver.lisp
defsystem_lisp
:=
upgrade.lisp session.lisp component.lisp operation.lisp system.lisp system-registry.lisp action.lisp lisp-action.lisp find-component.lisp forcing.lisp plan.lisp operate.lisp find-system.lisp parse-defsystem.lisp bundle.lisp concatenate-source.lisp package-inferred-system.lisp output-translations.lisp source-registry.lisp backward-internals.lisp backward-interface.lisp interface.lisp user.lisp footer.lisp
defsystem_lisp
:=
upgrade.lisp session.lisp component.lisp operation.lisp system.lisp system-registry.lisp action.lisp lisp-action.lisp find-component.lisp forcing.lisp plan.lisp operate.lisp find-system.lisp parse-defsystem.lisp bundle.lisp concatenate-source.lisp package-inferred-system.lisp output-translations.lisp source-registry.lisp backward-internals.lisp backward-interface.lisp interface.lisp user.lisp footer.lisp
...
@@ -204,6 +207,15 @@ test-lisp: build/asdf.lisp show-version
...
@@ -204,6 +207,15 @@ test-lisp: build/asdf.lisp show-version
t
:
test-lisp
t
:
test-lisp
# Useful for reproducing test failures with Docker.
test-docker-repl
:
@${
DOCKER
}
run
--rm
-i
-t
--pull
always
-u
$(
shell
id
-u
)
:
$(
shell
id
-g
)
-v
$(
sourceDirectory
)
:
$(
sourceDirectory
)
-w
$(
sourceDirectory
)
/test clfoundation/
${
l
}
:latest
test-docker-lisp
:
build/asdf.lisp show-version
@${
DOCKER
}
run
--rm
-i
-t
--pull
always
-u
$(
shell
id
-u
)
:
$(
shell
id
-g
)
-v
$(
sourceDirectory
)
:
$(
sourceDirectory
)
-w
$(
sourceDirectory
)
clfoundation/
${
l
}
:latest make test-lisp
l
=
${
l
}
t
=
${
t
}
td
:
test-docker-lisp
test
:
test-lisp test-clean-load test-load-systems
test
:
test-lisp test-clean-load test-load-systems
test-load-systems
:
build/asdf.lisp show-version
test-load-systems
:
build/asdf.lisp show-version
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment