Skip to content

Nightly builds

Nightly builds #573

Workflow file for this run

name: Nightly builds
on:
schedule:
- cron: "0 0 * * *"
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- build: installer
buildname: py311-x86_64
- build: installer
buildname: py311-x86
- build: installer
buildname: py38-x86_64
- build: installer
buildname: py38-x86
- build: portable
buildname: py311-x86_64
- build: portable
buildname: py311-x86
- build: portable
buildname: py38-x86_64
- build: portable
buildname: py38-x86
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install dependencies
run: |
./install-build-dependencies.sh
- name: Build
run: |
export SOURCE_DATE_EPOCH=$(git show -s --format=%ct)
"./build-${{ matrix.build }}.sh" "${{ matrix.buildname }}" "" master
- name: Get file name
id: vars
run: |
echo "file_name=$(cd dist && ls *.*)" >> $GITHUB_OUTPUT
- uses: actions/upload-artifact@v3
with:
name: ${{ steps.vars.outputs.file_name }}
path: dist/*