mirror of
https://github.com/MarshalX/telegram-crawler.git
synced 2025-03-14 04:51:42 +01:00
migrate OS independent jobs from macOS to linux runners
This commit is contained in:
parent
b0a9f53475
commit
138018442f
1 changed files with 13 additions and 7 deletions
20
.github/workflows/make_files_tree.yml
vendored
20
.github/workflows/make_files_tree.yml
vendored
|
@ -11,19 +11,25 @@ on:
|
|||
jobs:
|
||||
fetch_new_content:
|
||||
name: Make files tree
|
||||
runs-on: macos-10.15
|
||||
runs-on: ${{matrix.os}}
|
||||
continue-on-error: true
|
||||
timeout-minutes: 10
|
||||
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
mode: [
|
||||
"web",
|
||||
"web_res",
|
||||
"server",
|
||||
"client"
|
||||
]
|
||||
include:
|
||||
- mode: web
|
||||
os: ubuntu-20.04
|
||||
|
||||
- mode: web_res
|
||||
os: ubuntu-20.04
|
||||
|
||||
- mode: server
|
||||
os: ubuntu-20.04
|
||||
|
||||
- mode: client
|
||||
os: macos-10.15
|
||||
|
||||
steps:
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue