Squashfs-ify the compilers #114
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Squashfs-ify the compilers | |
on: | |
schedule: | |
- cron: '15 6 * * *' | |
workflow_dispatch: | |
inputs: | |
squash: | |
description: Things to squash (empty means all) | |
default: '' | |
required: false | |
jobs: | |
squash: | |
runs-on: [ 'self-hosted', 'ce', 'linux', 'x64' ] | |
steps: | |
- name: Start from a clean directory | |
uses: AutoModality/[email protected] | |
- uses: actions/checkout@v4 | |
- name: Set up environment | |
run: make ce | |
# relies on this being empty on cron | |
- name: Squash ${{ github.event.inputs.squash }} | |
run: bin/ce_install squash ${{ github.event.inputs.squash }} |