-
Notifications
You must be signed in to change notification settings - Fork 169
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: dependencies * fix: upload-artifacts * fix deny * fix manifest path * fix: semantic permissions * fix: use app instead of github token * fix: update version * fix: rust build fix token usage fix: return events back fix: dependencies update list of deny rollback rust fix: try to use particullar version return stable back fix: add test default fix tiny disable cache disable cache fix: qr reader phone fix: qr_reader use target_os fix: cargo clippy fix: fmt fix: remove semantic changes fix: remove semantic changes * fix: clippy fix: clippy fix: clippy fix: clippy fix: clippy * fix: redundant decrease * fix: workflows fix: ations * fix: versions * fix cargo.lock * fix: return small fixes back * fix: deny config * fix: clippy fix clippy fix clippy * fix: rollback version to ref * fix: deny * fix: macos version * downgrade opencv * fix: remove cache * fix: update opencv usage * fix: fmt * fix version in actions * fix: spellcheck * fix build script * fix: build version for ios * fix: return target_os definition * fix: rollback ubuntu version * make directory writable * downgrade ubuntu * fix: use latest opencv on ubuntu (#2437) * fix: use latest opencv on ubuntu * feat: add using opencv dockerfile * trigger event * remove test trigger * use builded container * rebuild image * update build image * debug * swithc to root * fix install dep * fix source * fix dependency * fix dependency * fix: dependency * build new image version * fix source * fix: build errors * fix: install dep * fix: dependency * fix: dependency * fix dependency * fix: remove sudo command * fix dependency in doc * fix: update opencv version * fix: update opencv * fix: decrease repetition * try to use action * use fixed version * fix version format * allow arm64 and build libsigner based on platform * rollback building --------- Co-authored-by: Russel <emkil.russel@gmail.com>
- Loading branch information
Showing
66 changed files
with
2,055 additions
and
1,881 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"name": "Ubuntu Development", | ||
"image": "ubuntu:22.04", | ||
|
||
"customizations": { | ||
"vscode": { | ||
"extensions": [ | ||
"ms-vscode.rust-analyzer" | ||
] | ||
} | ||
}, | ||
|
||
"features": { | ||
"ghcr.io/devcontainers/features/git:1": {}, | ||
"ghcr.io/devcontainers/features/github-cli:1": {} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: 'Install Android Dependencies' | ||
description: 'Sets up JDK and Android SDK/NDK' | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Set up JDK environment | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'adopt' | ||
java-version: 17 | ||
|
||
- name: Setup Android SDK | ||
uses: android-actions/setup-android@v3 | ||
with: | ||
cmdline-tools-version: 12266719 | ||
|
||
- name: Install NDK | ||
shell: bash | ||
run: echo "y" | ${ANDROID_SDK_ROOT}/cmdline-tools/16.0/bin/sdkmanager --install "ndk;24.0.8215888" --sdk_root=${ANDROID_SDK_ROOT} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.