🏗️ Build and Test JellyTau / Run Tests (push) Successful in 12m26s
Publish Documentation / Build & publish docs to gitea-pages (push) Successful in 5m18s
Traceability Validation / Check Requirement Traces (push) Successful in 17s
Build & Release / Run Tests (push) Successful in 4m15s
🏗️ Build and Test JellyTau / Android Compile Check (push) Successful in 7m49s
Build & Release / Build Linux (push) Successful in 17m46s
Build & Release / Build Windows (push) Successful in 13m20s
Build & Release / Build Android (push) Successful in 29m14s
Build & Release / Create Release (push) Successful in 15s
A local `scripts/build-arch.sh` run leaves a vendored cargo cache (`.cargo-arch/`), a makepkg workdir (`packaging/arch/pkg/`, `src/`) and the built package in the tree — tens of thousands of untracked files that bury real changes in `git status`.
73 lines
1.1 KiB
Plaintext
73 lines
1.1 KiB
Plaintext
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Node.js
|
|
node_modules
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
# Use bun (see packageManager in package.json); ignore other package managers' lockfiles
|
|
package-lock.json
|
|
yarn.lock
|
|
pnpm-lock.yaml
|
|
|
|
# Build output
|
|
/build
|
|
/dist
|
|
/.svelte-kit
|
|
/package
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Testing
|
|
coverage
|
|
.nyc_output
|
|
*.lcov
|
|
|
|
# WebdriverIO E2E tests
|
|
e2e/logs/
|
|
e2e/screenshots/
|
|
wdio-*.log
|
|
|
|
# Vitest
|
|
.vitest
|
|
|
|
# Vite
|
|
vite.config.js.timestamp-*
|
|
vite.config.ts.timestamp-*
|
|
|
|
# IDE
|
|
.idea
|
|
.vscode
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Logs
|
|
logs
|
|
*.log
|
|
|
|
# Android signing keystore (NEVER commit)
|
|
android-keystore/
|
|
|
|
# Local machine-specific Android NDK toolchain paths (do not commit)
|
|
src-tauri/.cargo/config.toml
|
|
|
|
# Docs site build artifacts (generated by the publish-docs CI job into docs/)
|
|
/docs/SUMMARY.md
|
|
/docs/README.md
|
|
/docs/api-redirect.md
|
|
/docs-site/book/
|
|
|
|
# Arch packaging build artifacts (vendored cargo cache, makepkg workdir, output package)
|
|
/.cargo-arch/
|
|
/packaging/arch/pkg/
|
|
/packaging/arch/src/
|
|
/packaging/arch/*.pkg.tar.zst
|