[CI] Remove trigger and download world maps

Signed-off-by: jeanbaptisteC <jeanbaptistec@noreply.codeberg.org>
This commit is contained in:
Jean-Baptiste
2025-05-14 18:27:53 +02:00
committed by Konstantin Pastbin
parent 44f4a08623
commit 158c9b1ee9
3 changed files with 22 additions and 2 deletions

View File

@@ -1,7 +1,5 @@
name: Android Check
on:
schedule:
- cron: '0 1 * * *' # Once per day at 01:00 UTC
workflow_dispatch: # Manual trigger
push:
branches:
@@ -70,6 +68,12 @@ jobs:
shell: bash
run: ./configure.sh
- name: Download MWM files
shell: bash
run: |
wget https://cdn.comaps.app/maps/latest/World.mwm -P ./data/
wget https://cdn.comaps.app/maps/latest/WorldCoasts.mwm -P ./data/
- name: Configure ccache
uses: hendrikmuhs/ccache-action@v1.2
with:

View File

@@ -1,6 +1,9 @@
name: iOS Check
on:
workflow_dispatch: # Manual trigger
push:
branches:
- main
jobs:
ios-check:
@@ -33,6 +36,12 @@ jobs:
shell: bash
run: ./configure.sh
- name: Download MWM files
shell: bash
run: |
wget https://cdn.comaps.app/maps/latest/World.mwm -P ./data/
wget https://cdn.comaps.app/maps/latest/WorldCoasts.mwm -P ./data/
- name: Configure XCode cache
uses: irgaly/xcode-cache@v1
with: