Wine Git CI #334
This file contains hidden or 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: Wine Git CI | |
| on: | |
| schedule: | |
| - cron: '0 0 */3 * *' | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Download artifact | |
| id: download-artifact | |
| uses: dawidd6/action-download-artifact@v3 | |
| with: | |
| workflow: bootstraps.yml | |
| workflow_conclusion: success | |
| path: /opt | |
| - name: Build Wine | |
| run: | | |
| sudo apt update | |
| sudo apt install debootstrap perl git wget xz-utils bubblewrap autoconf | |
| sudo tar -C /opt -xpf /opt/Bootstraps/bootstraps.tar.xz | |
| chmod +x build_wine.sh | |
| export WINE_VERSION="git" | |
| WINE_BRANCH=vanilla ./build_wine.sh | |
| WINE_BRANCH=staging ./build_wine.sh | |
| sha256sum *.tar.xz | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: Wine-Git | |
| path: ./*.tar.xz |