Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Introduce GitHub actions #1162

Draft
wants to merge 49 commits into
base: trunk
Choose a base branch
from
Draft
Changes from 1 commit
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
5517bd1
refactor:build:Introduce github actions builds
jkoan Oct 4, 2021
89c6996
Fix:build:Fixed indent
jkoan Oct 4, 2021
85cd19b
Add:build:Add Rviewdog to have automatic Formating suggestions
jkoan Oct 4, 2021
7c6bd9e
Fix: Fetch all Braches to be able to compare to trunk
jkoan Oct 4, 2021
b86577f
Change:build:remove reset
jkoan Oct 4, 2021
704cceb
fix:Sanity_check:Update .github/workflows/build.yml
jkoan Oct 4, 2021
2935096
change:build:deactivated as somethings broken with gradlew checkstyle
jkoan Oct 4, 2021
024e42a
fix
jkoan Oct 4, 2021
c69817a
Deactivate upload as well, as CheckStyle is not yet running
jkoan Oct 4, 2021
c8e4011
add sudo
jkoan Oct 4, 2021
ebb3632
fixed:build:Added skd and add ndk to path. Also install java
jkoan Oct 5, 2021
4e782fd
try to get history as well
jkoan Oct 5, 2021
d724fda
fix syntax
jkoan Oct 5, 2021
9cbb642
mixed lane names
jkoan Oct 5, 2021
f57dd09
try to add ndkVersion to automatically get ndk
jkoan Oct 5, 2021
1b2af27
Update Gradle
jkoan Oct 5, 2021
24d3060
update wrapper
jkoan Oct 5, 2021
81e33b5
Try to fix Lint error with getColumnIndexOrThrow instead of getColumn…
jkoan Oct 6, 2021
e1d4ff8
change:build:reenable sailfishos as its working with act now
jkoan May 23, 2022
978e342
Add:build:android:Add ndk install
jkoan Jun 7, 2022
80df701
fix:build:android:Make build compatible with act (https://github.com/…
jkoan Jun 12, 2022
46d0a08
fix:build:android:Fix setup and build of/with ndk
jkoan Jun 12, 2022
8934f8d
fix:build:android:install sudo only if UID is 0 as act is slightly di…
jkoan Jun 12, 2022
6827b67
fix:build:android:run gem install with as root
jkoan Jun 12, 2022
b42cf11
fix:build:android:Fix upload paths
jkoan Jun 12, 2022
ca111fd
fix:build:android:Remove debug code
jkoan Jun 12, 2022
dc6c1c4
debug
jkoan Jun 12, 2022
b2708da
debug
jkoan Jun 12, 2022
44ff8ba
Revert "debug"
jkoan Jun 12, 2022
41024be
fix:build:Fix checkout on wince and sailfish
jkoan Jun 12, 2022
584c50c
fix:build:Add name of artifact to be able to upload
jkoan Jun 12, 2022
37bd3d9
fix:build:sailfish:Repeat image change from #1183
jkoan Jun 12, 2022
43ec4b9
Fix:build:sailfish:Run with bash
jkoan Jun 14, 2022
c2ff7f2
Fix:build:sailfish:Remove ls of non existing dir
jkoan Jun 14, 2022
d2997ef
try run with sudo...
jkoan Jun 14, 2022
7a1f200
try keeping env
jkoan Jun 14, 2022
dd0cb26
try bash with -x to better debug whats going on... on act its working
jkoan Jun 14, 2022
b0fea38
next try
jkoan Jun 14, 2022
3dd6375
fix:build:sailfish:Fix Target config
jkoan Jun 14, 2022
4f73de7
try change home
jkoan Jun 14, 2022
c01e0b5
try 4.4.0.64
jkoan Jun 14, 2022
b7d66ed
remove tmp fix
jkoan Jun 14, 2022
1268dbd
Update actions/upload-artifact to v4
jkoan Dec 20, 2024
e33aebb
Update Rest of uploads as well
jkoan Dec 20, 2024
10e7fa1
Update wince to new image
jkoan Dec 20, 2024
1bf73b0
Update Win32 image and changes from #1267
jkoan Dec 20, 2024
14f064b
Pull from Maven Central
jkoan Dec 20, 2024
777d82d
Upldate to newer image
jkoan Dec 20, 2024
676f746
Update build.yml
jkoan Dec 20, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Try to fix Lint error with getColumnIndexOrThrow instead of getColumn…
…Index
jkoan committed Dec 20, 2024
commit 81e33b5a88541a2b227272150b265e792a595151
2 changes: 1 addition & 1 deletion navit/android/src/org/navitproject/navit/NavitTraff.java
Original file line number Diff line number Diff line change
@@ -357,7 +357,7 @@ private void fetchMessages(Context context, Uri uri) {
}
StringBuilder builder = new StringBuilder("<feed>\n");
while (cursor.moveToNext())
builder.append(cursor.getString(cursor.getColumnIndex(COLUMN_DATA))).append("\n");
builder.append(cursor.getString(cursor.getColumnIndexOrThrow(COLUMN_DATA))).append("\n");
builder.append("</feed>");
cursor.close();
onFeedReceived(mCbid, builder.toString());