Compare commits

..

1 commit

Author SHA1 Message Date
Alex Pyrgiotis
9f768c5c6b
Merge 0cb6c5ef82 into 504a9e1df2 2024-11-20 15:22:24 +01:00
5 changed files with 11 additions and 22 deletions

View file

@ -1,10 +1,6 @@
name: Build dev environments
on:
pull_request:
push:
branches:
- main
- "test/**"
schedule:
- cron: "0 0 * * *" # Run every day at 00:00 UTC.

View file

@ -1,6 +1,6 @@
name: Check branch conformity
on:
pull_request:
push:
jobs:
prevent-fixup-commits:

View file

@ -1,10 +1,8 @@
name: Tests
on:
pull_request:
push:
branches:
- main
- "test/**"
pull_request:
branches: [main]
schedule:
- cron: "2 0 * * *" # Run every day at 02:00 UTC.
workflow_dispatch:
@ -93,8 +91,7 @@ jobs:
windows:
runs-on: windows-latest
needs:
- download-tessdata
needs: download-tessdata
env:
DUMMY_CONVERSION: 1
steps:
@ -124,8 +121,7 @@ jobs:
macOS:
name: "macOS (${{ matrix.arch }})"
runs-on: ${{ matrix.runner }}
needs:
- download-tessdata
needs: download-tessdata
strategy:
matrix:
include:
@ -153,10 +149,9 @@ jobs:
run: poetry run make test
build-deb:
needs:
- build-container-image
name: "build-deb (${{ matrix.distro }} ${{ matrix.version }})"
runs-on: ubuntu-latest
needs: build-container-image
strategy:
matrix:
include:
@ -224,8 +219,7 @@ jobs:
install-deb:
name: "install-deb (${{ matrix.distro }} ${{ matrix.version }})"
runs-on: ubuntu-latest
needs:
- build-deb
needs: build-deb
strategy:
matrix:
include:
@ -279,8 +273,7 @@ jobs:
build-install-rpm:
name: "build-install-rpm (${{ matrix.distro }} ${{matrix.version}})"
runs-on: ubuntu-latest
needs:
- build-container-image
needs: build-container-image
strategy:
matrix:
distro: ["fedora"]
@ -328,7 +321,7 @@ jobs:
run: |
./dev_scripts/env.py --distro ${{ matrix.distro }} \
--version ${{ matrix.version }} \
build
build --download-pyside6
- name: Run a test command
run: |

View file

@ -1,9 +1,8 @@
name: Scan latest app and container
on:
push:
branches:
- main
pull_request:
branches: [ main ]
schedule:
- cron: '0 0 * * *' # Run every day at 00:00 UTC.
workflow_dispatch:

View file

@ -915,6 +915,7 @@ class QALinux(QABase):
"--version",
self.VERSION,
"build",
"--download-pyside6",
)
@classmethod