2020-06-15 14:18:57 +00:00
|
|
|
|
#-*-mode:makefile-gmake;indent-tabs-mode:t;tab-width:8;coding:utf-8-*-┐
|
|
|
|
|
#───vi: set et ft=make ts=8 tw=8 fenc=utf-8 :vi───────────────────────┘
|
|
|
|
|
#
|
|
|
|
|
# SYNOPSIS
|
|
|
|
|
#
|
|
|
|
|
# Cosmopolitan Online Testing
|
|
|
|
|
#
|
|
|
|
|
# OVERVIEW
|
|
|
|
|
#
|
|
|
|
|
# make test HOSTS="rhel5 windows mac freebsd openbsd wsl"
|
|
|
|
|
#
|
|
|
|
|
# DESCRIPTION
|
|
|
|
|
#
|
|
|
|
|
# This code deploys and spawns testing infrastructure to a fleet of
|
|
|
|
|
# virtual machines running the various supported platforms. This is
|
|
|
|
|
# super trivial since αcτµαlly pδrταblε εxεcµταblε is an autonomous
|
|
|
|
|
# format requiring one simple file copy. Latencies are outstanding.
|
|
|
|
|
# Configuration is trivial using /etc/hosts and ~/.ssh/config.
|
|
|
|
|
#
|
|
|
|
|
# SEE ALSO
|
|
|
|
|
#
|
|
|
|
|
# - tool/build/runit.c
|
|
|
|
|
# - tool/build/runitd.c
|
|
|
|
|
|
|
|
|
|
.PRECIOUS: o/$(MODE)/%.com.ok
|
2023-06-04 15:19:45 +00:00
|
|
|
|
o/$(MODE)/%.com.ok: private .PLEDGE = stdio rpath wpath cpath proc fattr inet
|
2021-02-20 06:20:38 +00:00
|
|
|
|
o/$(MODE)/%.com.ok: \
|
2023-06-04 15:19:45 +00:00
|
|
|
|
o//tool/build/runit.com \
|
|
|
|
|
o//tool/build/runitd.com \
|
2020-06-15 14:18:57 +00:00
|
|
|
|
o/$(MODE)/%.com
|
2022-08-11 05:08:43 +00:00
|
|
|
|
@$(COMPILE) -wATEST -tT$@ $^ $(HOSTS)
|