Skip to content

Commit

Permalink
added two more fields to the dictionary and changed android workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
aNaOH committed Jan 1, 2024
1 parent fa480b9 commit 3e66f16
Show file tree
Hide file tree
Showing 5 changed files with 1,505 additions and 8 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -243,6 +243,9 @@ jobs:
with:
ndk-version: 'r23c'

- name: Install target
run: rustup target add aarch64-linux-android

- name: Build Android Debug x64
run: cargo build --target aarch64-linux-android

Expand All @@ -269,6 +272,9 @@ jobs:
with:
ndk-version: 'r23c'

- name: Install target
run: rustup target add i686-linux-android

- name: Build Android Debug x86
run: cargo build --target i686-linux-android

Expand Down
18 changes: 16 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
target/
# Godot 4+ specific ignores
.godot/

# Godot-specific ignores
.import/
export.cfg
export_presets.cfg

# Imported translations (automatically generated from CSV files)
*.translation

Cargo.lock
# Mono-specific ignores
.mono/
data_*/
mono_crash.*.json

target/
Loading

0 comments on commit 3e66f16

Please sign in to comment.