Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,26 +23,26 @@ jobs:
- uses: gradle/actions/setup-gradle@v4

- name: Build debug APK
run: ./gradlew :BT_Free:assembleDebug
run: ./gradlew :app:assembleDebug

- name: Detekt
run: ./gradlew :BTLib:detekt
run: ./gradlew :lib:detekt

- name: Lint
run: ./gradlew :BTLib:lint :BT_Free:lint
run: ./gradlew :lib:lint :app:lint
continue-on-error: true

- name: Upload debug APK
uses: actions/upload-artifact@v4
with:
name: blowtorch-debug
path: BT_Free/build/outputs/apk/debug/BT_Free-debug.apk
name: mudwammer-debug
path: app/build/outputs/apk/debug/app-debug.apk

- name: Upload lint reports
if: always()
uses: actions/upload-artifact@v4
with:
name: lint-reports
path: |
BTLib/build/reports/lint-results*.html
BT_Free/build/reports/lint-results*.html
lib/build/reports/lint-results*.html
app/build/reports/lint-results*.html
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ jobs:
- uses: gradle/actions/setup-gradle@v4

- name: Build debug APK
run: ./gradlew :BT_Free:assembleDebug
run: ./gradlew :app:assembleDebug

- name: Rename APK
env:
TAG: ${{ github.ref_name }}
run: cp BT_Free/build/outputs/apk/debug/BT_Free-debug.apk "BlowTorch-${TAG}.apk"
run: cp app/build/outputs/apk/debug/app-debug.apk "MUDWammer-${TAG}.apk"

- name: Create release
env:
GH_TOKEN: ${{ github.token }}
TAG: ${{ github.ref_name }}
run: gh release create "$TAG" "BlowTorch-${TAG}.apk" --generate-notes
run: gh release create "$TAG" "MUDWammer-${TAG}.apk" --generate-notes
41 changes: 24 additions & 17 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,17 +1,12 @@
gen/
bin/
BTLib/gen
BTLib/bin
BTLib/obj
BT_Test/gen
BT_Test/bin
BT_Pro/gen
BT_Pro/bin
BT_Free/gen
BT_Free/bin
BTLib/build
BT_Free/build
BT_Aard/build
lib/gen
lib/bin
lib/obj
app/gen
app/bin
lib/build
app/build
build/
*.o
*.a
Expand Down Expand Up @@ -126,22 +121,34 @@ gradle-app.setting
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
# gradle/wrapper/gradle-wrapper.properties
*.DS_Store
BTLib/key/bt_privatekey.keystore
BT_Aard/key/signiture_cert
lib/key/bt_privatekey.keystore

# Claude Code working files
docs/plans/
.chainlink/
.mcp.json
CHANGELOG.md

# Misc
crash.log
firebase-debug.log
__pycache__/

# LuaJIT source (cloned at build time)
LuaJIT-2.1/

# Built native libraries (regenerated by build_ndk_libraries_modern.sh)
BTLib/jni/luajava/libluajit-*.a
BTLib/jni/luajava/libluajit-*.so
BTLib/obj/
lib/jni/luajava/libluajit-*.a
lib/jni/luajava/libluajit-*.so
lib/obj/

# Editor backup files
*~

# Eclipse
.classpath
.project
.settings/

# Git worktrees
.worktrees/
11 changes: 0 additions & 11 deletions .gitignore~

This file was deleted.

9 changes: 0 additions & 9 deletions BTLib/.classpath

This file was deleted.

45 changes: 0 additions & 45 deletions BTLib/.project

This file was deleted.

3 changes: 0 additions & 3 deletions BTLib/.settings/org.eclipse.core.resources.prefs

This file was deleted.

12 changes: 0 additions & 12 deletions BTLib/.settings/org.eclipse.jdt.core.prefs

This file was deleted.

1 change: 0 additions & 1 deletion BTLib/ant.properties

This file was deleted.

92 changes: 0 additions & 92 deletions BTLib/build.xml

This file was deleted.

9 changes: 0 additions & 9 deletions BTLib/checkstyle_suppressions.xml

This file was deleted.

5 changes: 0 additions & 5 deletions BTLib/default.properties

This file was deleted.

Binary file removed BTLib/jni/.DS_Store
Binary file not shown.
3 changes: 0 additions & 3 deletions BTLib/jni/Application.mk~

This file was deleted.

13 changes: 0 additions & 13 deletions BTLib/jni/bit/Android.mk~

This file was deleted.

24 changes: 0 additions & 24 deletions BTLib/jni/lmarshal/Android.mk~

This file was deleted.

24 changes: 0 additions & 24 deletions BTLib/jni/lsqlite3/Android.mk~

This file was deleted.

Loading
Loading