-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Exercising entrypoint with more test targets (#8)
* Exercising entrypoint with more test targets * Running e2e without blocking
- Loading branch information
1 parent
b992056
commit add3643
Showing
4 changed files
with
69 additions
and
14 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
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,27 @@ | ||
#!/usr/bin/env bash | ||
# Copyright 2024 Dotanuki Labs | ||
# SPDX-License-Identifier: MIT | ||
|
||
set -euo pipefail | ||
|
||
readonly repo="bitwarden/ios" | ||
readonly version="v2024.9.1" | ||
|
||
readonly ipa_asset="Bitwarden.iOS.2024.9.1.1092.ipa" | ||
readonly ipa_download_url="https://github.com/$repo/releases/download/$version/$ipa_asset" | ||
readonly ipa="bitwarden-ios.ipa" | ||
|
||
readonly dsyms_asset="Bitwarden.iOS.2024.9.1.1092.dSYMs.zip" | ||
readonly dsyms_download_url="https://github.com/$repo/releases/download/$version/$dsyms_asset" | ||
readonly dsyms_zip="dsyms.zip" | ||
|
||
script_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" | ||
cd "${script_dir%/*}" | ||
actual_dir=$(pwd) | ||
|
||
rm -rf "$actual_dir/.tmp" && mkdir "$actual_dir/.tmp" | ||
curl -fsSL -o "$actual_dir/.tmp/$ipa" -C - "$ipa_download_url" | ||
curl -fsSL -o "$actual_dir/.tmp/$dsyms_zip" -C - "$dsyms_download_url" | ||
unzip -d "$actual_dir/.tmp/dsyms" "$actual_dir/.tmp/$dsyms_zip" | ||
|
||
src/main.sh "$actual_dir/.tmp/$ipa" "$actual_dir/.tmp/dsyms" |
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,26 @@ | ||
#!/usr/bin/env bash | ||
# Copyright 2024 Dotanuki Labs | ||
# SPDX-License-Identifier: MIT | ||
|
||
set -euo pipefail | ||
|
||
readonly repo="uazo/cromite" | ||
readonly version="v129.0.6668.59-bbcb812cffa4e2815760cd7fc3e34b00b4e39ea1" | ||
|
||
readonly apk_asset="arm64_ChromePublic.apk" | ||
readonly apk_download_url="https://github.com/$repo/releases/download/$version/$apk_asset" | ||
readonly apk="cromite-android.apk" | ||
|
||
readonly mappings_asset="arm64_ChromePublic.apk.mapping" | ||
readonly mappings_download_url="https://github.com/$repo/releases/download/$version/$mappings_asset" | ||
readonly mappings="mappings.txt" | ||
|
||
script_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" | ||
cd "${script_dir%/*}" | ||
actual_dir=$(pwd) | ||
|
||
rm -rf "$actual_dir/.tmp" && mkdir "$actual_dir/.tmp" | ||
curl -fsSL -o "$actual_dir/.tmp/$apk" -C - "$apk_download_url" | ||
curl -fsSL -o "$actual_dir/.tmp/$mappings" -C - "$mappings_download_url" | ||
|
||
src/main.sh "$actual_dir/.tmp/$apk" "$actual_dir/.tmp/$mappings" |
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