mirror of
https://github.com/zhaofengli/attic.git
synced 2024-12-14 11:57:30 +00:00
b45885e67b
Fixes #147.
51 lines
1.3 KiB
Makefile
51 lines
1.3 KiB
Makefile
set positional-arguments
|
|
|
|
here := env_var_or_default("JUST_INVOCATION_DIR", invocation_directory())
|
|
base := `pwd`
|
|
|
|
#@echo "here: {{ here }}"
|
|
#@echo "base: {{ base }}"
|
|
|
|
# List available targets
|
|
list:
|
|
@just --list --unsorted
|
|
|
|
# Run a command with an alternative Nix version
|
|
with-nix version *command:
|
|
set -e; \
|
|
hook="$(jq -e -r '.[$version].shellHook' --arg version "{{ version }}" < "$NIX_VERSIONS" || (>&2 echo "Version {{ version }} doesn't exist"; exit 1))"; \
|
|
eval "$hook"; \
|
|
CARGO_TARGET_DIR="{{ base }}/target/nix-{{ version }}" \
|
|
{{ command }}
|
|
|
|
# (CI) Build WebAssembly crates
|
|
ci-build-wasm:
|
|
#!/usr/bin/env bash
|
|
set -euxo pipefail
|
|
|
|
# https://github.com/rust-lang/rust/issues/122357
|
|
export RUST_MIN_STACK=16777216
|
|
|
|
pushd attic
|
|
cargo build --target wasm32-unknown-unknown --no-default-features -F chunking -F stream
|
|
popd
|
|
pushd token
|
|
cargo build --target wasm32-unknown-unknown
|
|
popd
|
|
|
|
# (CI) Run unit tests
|
|
ci-unit-tests matrix:
|
|
#!/usr/bin/env bash
|
|
set -euxo pipefail
|
|
|
|
system=$(nix-instantiate --eval -E 'builtins.currentSystem')
|
|
tests=$(nix build .#internalMatrix."$system".\"{{ matrix }}\".attic-tests --no-link --print-out-paths -L)
|
|
find "$tests/bin" -exec {} \;
|
|
|
|
# (CI) Run rustfmt check
|
|
ci-rustfmt:
|
|
cargo fmt --check
|
|
|
|
# (CI) Build and push images
|
|
ci-build-and-push-images *args:
|
|
.ci/build-and-push-images.sh {{ args }}
|