From 5fd6c204c13d5b369f4c6faa1d1c1130882d7d4d Mon Sep 17 00:00:00 2001 From: Sushrut1101 Date: Sun, 22 May 2022 22:19:52 +0530 Subject: [PATCH 1/6] DumprX-CI: Use @DumprXBot - https://t.me/DumprXBot Signed-off-by: Sushrut1101 --- .cirrus.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.cirrus.yml b/.cirrus.yml index 6df68a22..ccfc3810 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -1,7 +1,7 @@ env: # Telegram TG_CHAT: "@DumprXDumps" - TG_TOKEN: ENCRYPTED[5f547b09e09023988e0ea334b4328cd83bea8e4eb4389f2365eab389e0df620ae2a1c0555edc0f32801cd4c594f4e2b1] + TG_TOKEN: ENCRYPTED[a73a53b94a14e3cb110744a6edd108475494c5eff22d1881b407ae09d6a4fef90e8579a1b8f8a7286a9452c081f94894] # Gitlab PUSH_TO_GITLAB: true From ecfb5129e968ccbb609d5545e789898d528aae9e Mon Sep 17 00:00:00 2001 From: Sushrut1101 Date: Sat, 9 Jul 2022 00:31:14 +0530 Subject: [PATCH 2/6] Change GitLab Host Signed-off-by: Sushrut1101 --- .cirrus.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.cirrus.yml b/.cirrus.yml index ccfc3810..53e57f54 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -5,11 +5,12 @@ env: # Gitlab PUSH_TO_GITLAB: true - GITLAB_GROUP: Android-Dumps - GITLAB_TOKEN: ENCRYPTED[99ff1b55524206ae9db506d7ac7ffa41e359124579a5756632c53d486f1a5321ab4a4a3e1c7b86c42d598912a2edf33d] + GITLAB_GROUP: DumprX + GITLAB_TOKEN: ENCRYPTED[9df452a061a97524a9994517e5fc5bbc4ebbb62aff325ec486ae4395276ba8561ca921bcd0dac76c0f2edff77808b6d8] + GITLAB_INSTANCE: www.opencode.net # Private SSH Key - PRIV_SSH_KEY: ENCRYPTED[f089734f7284794ec3d78e4fb239fd4e5a9b4db19173fb406d17b1788af1b9cc50e6b4b5c0e439bd7b2bd9feced489a8] + PRIV_SSH_KEY: ENCRYPTED[6642ded05f455c0aec06fb52c7c7c9981de3d199832ca90b8270392a3b2784a77c34922104b79c4b2312b16de6e0b055] task: name: "Firmware Dump by DumprX" @@ -28,6 +29,7 @@ task: - mkdir -p ~/.ssh - ssh-keyscan -t rsa github.com >> ~/.ssh/known_hosts - ssh-keyscan -t rsa gitlab.com >> ~/.ssh/known_hosts + - ssh-keyscan -t rsa $GITLAB_INSTANCE >> ~/.ssh/known_hosts - echo "$PRIV_SSH_KEY" > ~/.ssh/id_rsa - chmod 600 ~/.ssh/id_rsa From 2da9c8f439088d49d5a6cf00e66724d6d04fdde6 Mon Sep 17 00:00:00 2001 From: Sushrut1101 Date: Sat, 9 Jul 2022 18:11:23 +0530 Subject: [PATCH 3/6] Add missing stuff Signed-off-by: Sushrut1101 --- .cirrus.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.cirrus.yml b/.cirrus.yml index 53e57f54..36841398 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -41,6 +41,7 @@ task: - echo "$GITLAB_GROUP" > .gitlab_group - echo "$TG_CHAT" > .tg_chat - echo "$TG_TOKEN" > .tg_token + - echo "$GITLAB_INSTANCE" > .gitlab_instance - sudo bash setup.sh DumprX_script: From 73502103efe7397a1c056b9924542c94091a215e Mon Sep 17 00:00:00 2001 From: tarsin <43900799+asuka-mio@users.noreply.github.com> Date: Wed, 17 Aug 2022 13:41:29 +0800 Subject: [PATCH 4/6] Dumps located in opencode now --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 60f15a39..5d326fd9 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Dump Android ROMs/Firmwares Online, via a PR, for free! ## Notes ## - If the Dump is Successful, you'll see a post on our Telegram Channel, [@DumprXDumps](https://t.me/DumprXDumps) - If the Dump Fails, you'll not see the post, and you'll have to check the Logs in Cirrus CI Website -- The Dumps are Pushed to [https://gitlab.com/Android-Dumps](https://gitlab.com/Android-Dumps +- The Dumps are Pushed to [https://www.opencode.net/DumprX](https://www.opencode.net/DumprX ) - Since this is Using only 2 Cores, Cirrus Waiting Time is Very less, Usually not more than a minute or two. - This Script use [DumprX](https://github.com/DumprX/DumprX.git) to Dump the ROM/Firmware. From 4ff366a20a47735715975902e58199d724195ab0 Mon Sep 17 00:00:00 2001 From: Sushrut1101 Date: Mon, 22 Aug 2022 00:43:18 +0530 Subject: [PATCH 5/6] Try to Workaround with Auto Cancellation Issue When a new commit is Pushed, the Older build gets automatically cancelled if it's not complete. This Commit should fix it. --- .cirrus.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.cirrus.yml b/.cirrus.yml index 36841398..8cd5fccc 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -16,6 +16,7 @@ task: name: "Firmware Dump by DumprX" only_if: $CIRRUS_REPO_OWNER == 'DumprX' skip: $CIRRUS_BRANCH == 'main' + auto_cancellation: $CIRRUS_BRANCH == 'autocancel' timeout_in: 120m container: image: ghcr.io/sushrut1101/docker:arch From 00082f630d7b279a8e9cfa9939f1a18d6ecdb545 Mon Sep 17 00:00:00 2001 From: infinixs5lite Date: Mon, 19 Jun 2023 15:14:33 +0100 Subject: [PATCH 6/6] Update ROM_URL.txt --- ROM_URL.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ROM_URL.txt b/ROM_URL.txt index 7c025e02..a958ad27 100644 --- a/ROM_URL.txt +++ b/ROM_URL.txt @@ -1 +1 @@ -https://bigota.d.miui.com/V12.5.4.0.RJWINXM/curtana_in_global_images_V12.5.4.0.RJWINXM_20220129.0000.00_11.0_in_85f43863e5.tgz +https://bigota.d.miui.com/V14.0.2.0.TGEMIXM/miui_FOGGlobal_V14.0.2.0.TGEMIXM_d9fc7d070f_13.0.zip