Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
- cron: "0 5 * * 1"
workflow_dispatch:

env:
SKIP: no-commit-to-branch

jobs:

make-check:
Expand Down Expand Up @@ -50,6 +53,7 @@ jobs:
- name: Install avocado
run: |
pip install -r requirements-dev.txt
python3 -m pip install --user --upgrade "setuptools<80"
python3 setup.py develop --user
- name: Avocado pre-release job
run: python3 setup.py test --select=pre-release
Expand Down Expand Up @@ -108,6 +112,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- name: Set weekly TestPyPI version
run: |
version="$(cat VERSION).dev${{ github.run_number }}"
make -f Makefile.gh propagate-version VERSION="$version"
- name: Build tarballs and wheels
run: make -f Makefile.gh build-wheel check-wheel
- name: Save tarballs and wheels as artifacts
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

env:
SKIP: no-commit-to-branch

jobs:

user-installation:
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/weekly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

env:
SKIP: no-commit-to-branch

jobs:

latest-python:
Expand Down Expand Up @@ -89,7 +92,9 @@ jobs:
- name: Install static check dependencies
run: make requirements-static-checks
- name: Installing Avocado in develop mode
run: python3 setup.py develop --user --skip-optional-plugins --skip-examples-plugins-tests
run: |
python3 -m pip install --user --upgrade "setuptools<80"
python3 setup.py develop --user --skip-optional-plugins --skip-examples-plugins-tests
- name: Avocado version
run: avocado --version
- name: Tree static check, unittests and fast functional tests without plugins
Expand Down
Loading