mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
10 lines
200 B
Bash
Executable file
10 lines
200 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
STATE=$(pwd)/../state/anki-ci
|
|
mkdir -p $STATE
|
|
|
|
echo "+++ Building and testing"
|
|
ln -sf out/node_modules .
|
|
SKIP_RUNNER_BUILD=0 BUILD_ROOT=$STATE/build ./ninja pylib qt wheels check
|