Skip to content

Commit

Permalink
devops: Add build task & notes to taskfile (#3191)
Browse files Browse the repository at this point in the history
  • Loading branch information
max-sixty committed Jul 31, 2023
1 parent d4c6f92 commit 92ee917
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,10 @@ tasks:
cmds:
- cargo build --all-targets --all-features
- cargo build --all-targets --all-features --target=wasm32-unknown-unknown
# Build without features, as the dependencies have slightly different
# features themselves and so require recompiling. This is only useful for
# caching.
- cargo build --all-targets
- task: build-web

test-all:
Expand All @@ -194,8 +198,11 @@ tasks:
Running this isn't required when developing; it's for caching or as a reference.
cmds:
# TODO: this doesn't run the python tests. We should add them in here.
# They are run in `test-all.yaml` on GHA.
# TODO:
# - Add `prql-python` tests.
# - We could add `prql-lib` here.
# - We deliberately don't test some other bindings, such as `prql-php`,
# given they require more dependencies and aren't yet supported.
- task: test-rust
- task: build-all
- task: test-js
Expand Down

0 comments on commit 92ee917

Please sign in to comment.