mirror of
https://github.com/status-im/libp2p-test-plans.git
synced 2025-01-15 01:14:24 +00:00
3b6d87b532
* Update Go test implementations to match new spec * Update JS test implementation * Update Rust test Implementation * Update root Makefile * Update runner to new spec * Use composite action and S3 caching * Not using GHA cache anymore * Try removing access key from env * Test workflow without cache keys (#131) * Test if it works without s3 cache keys * Fix if statement * Fix if statement * Always use buildkit * Undo debug change * Add no cache workflow * Skip test in no-cache workflow * Update .github/workflows/no-cache-multidim-interop.yml * Same workflow; use CACHING_OPTIONS * Add Browser WebRTC test (#130) * Add webrtc to JS test * Add onlyDial to all queries * Update versions.ts * Remove unneeded timeout overrides
14 lines
302 B
Makefile
14 lines
302 B
Makefile
GO_SUBDIRS := $(wildcard go/*/.)
|
|
JS_SUBDIRS := $(wildcard js/*/.)
|
|
RUST_SUBDIRS := $(wildcard rust/*/.)
|
|
|
|
all: $(GO_SUBDIRS) $(JS_SUBDIRS) $(RUST_SUBDIRS)
|
|
$(JS_SUBDIRS):
|
|
$(MAKE) -C $@
|
|
$(GO_SUBDIRS):
|
|
$(MAKE) -C $@
|
|
$(RUST_SUBDIRS):
|
|
$(MAKE) -C $@
|
|
|
|
|
|
.PHONY: $(GO_SUBDIRS) $(JS_SUBDIRS) $(RUST_SUBDIRS) all |