Merge tag 'v0.5.2' into feature/gui

[Diff since v0.5.1](https://github.com/ANL-CEEESA/RELOG/compare/v0.5.1...v0.5.2)
This commit is contained in:
2022-08-26 14:34:17 -05:00
26 changed files with 333 additions and 182 deletions

View File

@@ -1,32 +1,22 @@
JULIA := julia --color=yes --project=@.
SRC_FILES := $(wildcard src/*.jl test/*.jl)
VERSION := 0.5
all: docs test
build/sysimage.so: src/sysimage.jl Project.toml Manifest.toml
mkdir -p build
$(JULIA) src/sysimage.jl
build/test.log: $(SRC_FILES) build/sysimage.so
cd test; $(JULIA) --sysimage ../build/sysimage.so runtests.jl
clean:
rm -rf build/*
rm -rfv build Manifest.toml test/Manifest.toml deps/formatter/build deps/formatter/Manifest.toml
docs:
mkdocs build -d ../docs/$(VERSION)/
cd docs; julia --project=. make.jl; cd ..
rsync -avP --delete-after docs/build/ ../docs/$(VERSION)/
docker-build:
docker build --tag relog:0.6 .
docker build --tag relog-web:$(VERSION) .
format:
julia -e 'using JuliaFormatter; format(["src", "test"], verbose=true);'
cd deps/formatter; ../../juliaw format.jl
test: build/test.log
test: test/Manifest.toml
./juliaw test/runtests.jl
test-watch:
bash -c "while true; do make test --quiet; sleep 1; done"
.PHONY: docs test
test/Manifest.toml: test/Project.toml
julia --project=test -e "using Pkg; Pkg.instantiate()"
.PHONY: docs test format