hangover-9.0-rc4 #9
Workflow file for this run
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: debian12 | |
on: | |
workflow_dispatch: | |
push: | |
paths-ignore: | |
- 'benchmarks/**' | |
- 'docs/**' | |
- 'README.md' | |
release: | |
types: [published] | |
jobs: | |
foundation: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: free disk space | |
run: | | |
sudo swapoff -a | |
sudo rm -f /swapfile | |
sudo apt clean | |
df -h | |
- name: Cache docker image | |
id: cache-foundation | |
uses: actions/cache@v3 | |
env: | |
cache-name: cache-foundation | |
with: | |
path: foundationdeb12.tgz | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('.packaging/debian12/Dockerfile') }} | |
- name: Setup packaging | |
if: ${{ steps.cache-foundation.outputs.cache-hit != 'true' }} | |
run: | | |
cp .packaging/debian12/Dockerfile . | |
- name: Build package | |
if: ${{ steps.cache-foundation.outputs.cache-hit != 'true' }} | |
run: docker build -t foundationdeb12 . | |
- name: Export docker image | |
if: ${{ steps.cache-foundation.outputs.cache-hit != 'true' }} | |
run: docker image save foundationdeb12 | gzip -c > foundationdeb12.tgz | |
fex-unix: | |
needs: foundation | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: free disk space | |
run: | | |
sudo swapoff -a | |
sudo rm -f /swapfile | |
sudo apt clean | |
df -h | |
- name: Cache docker image | |
id: cache-foundation | |
uses: actions/cache@v3 | |
env: | |
cache-name: cache-foundation | |
with: | |
path: foundationdeb12.tgz | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('.packaging/debian12/Dockerfile') }} | |
- name: Import docker image | |
run: docker image load -i foundationdeb12.tgz | |
- name: get version | |
run: git describe --tags | sed "s/hangover-/HOVERSION=/" >> "$GITHUB_ENV"; git describe --tags | sed "s/hangover-/HOVERSION=/" | |
- name: get shallow submodule | |
run: git submodule update --init --recursive --depth 1 fex | |
- name: Setup packaging | |
run: | | |
cp -r .packaging/debian12/fex/* fex | |
cp fex/LICENSE fex/DEBIAN/copyright | |
sed -i "s/HOVERSION/${HOVERSION}/g" fex/Dockerfile | |
sed -i "s/HOVERSION/${HOVERSION}/g" fex/DEBIAN/control | |
cat fex/DEBIAN/copyright | |
cat fex/Dockerfile | |
cat fex/DEBIAN/control | |
nproc | |
- name: Build package | |
run: cd fex; docker build -t fexdeb12 . | |
- name: Extract package | |
run: docker run --rm fexdeb12 cat /opt/deb/hangover-libfexcore_${{ env.HOVERSION }}~bookworm_arm64.deb > hangover-libfexcore_${{ env.HOVERSION }}~bookworm_arm64.deb | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: hangover-libfexcore_${{ env.HOVERSION }}~bookworm_arm64.deb | |
path: hangover-libfexcore_${{ env.HOVERSION }}~bookworm_arm64.deb | |
- name: Upload Artifact as Release Asset | |
if: github.event_name == 'release' | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ github.event.release.upload_url }} | |
asset_path: hangover-libfexcore_${{ env.HOVERSION }}~bookworm_arm64.deb | |
asset_name: hangover-libfexcore_${{ env.HOVERSION }}~bookworm_arm64.deb | |
asset_content_type: application/vnd.debian.binary-package | |
fex-pe: | |
needs: foundation | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: free disk space | |
run: | | |
sudo swapoff -a | |
sudo rm -f /swapfile | |
sudo apt clean | |
df -h | |
- name: Cache docker image | |
id: cache-foundation | |
uses: actions/cache@v3 | |
env: | |
cache-name: cache-foundation | |
with: | |
path: foundationdeb12.tgz | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('.packaging/debian12/Dockerfile') }} | |
- name: Import docker image | |
run: docker image load -i foundationdeb12.tgz | |
- name: get version | |
run: git describe --tags | sed "s/hangover-/HOVERSION=/" >> "$GITHUB_ENV"; git describe --tags | sed "s/hangover-/HOVERSION=/" | |
- name: get shallow submodule | |
run: git submodule update --init --recursive --depth 1 fex | |
- name: Setup packaging | |
run: | | |
cp -r .packaging/debian12/fexpe/* fex | |
cp fex/LICENSE fex/DEBIAN/copyright | |
sed -i "s/HOVERSION/${HOVERSION}/g" fex/Dockerfile | |
sed -i "s/HOVERSION/${HOVERSION}/g" fex/DEBIAN/control | |
cat fex/DEBIAN/copyright | |
cat fex/Dockerfile | |
cat fex/DEBIAN/control | |
nproc | |
- name: Build package | |
run: cd fex; docker build -t fexpedeb12 . | |
- name: Extract package | |
run: docker run --rm fexpedeb12 cat /opt/deb/hangover-libwow64fex_${{ env.HOVERSION }}~bookworm_arm64.deb > hangover-libwow64fex_${{ env.HOVERSION }}~bookworm_arm64.deb | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: hangover-libwow64fex_${{ env.HOVERSION }}~bookworm_arm64.deb | |
path: hangover-libwow64fex_${{ env.HOVERSION }}~bookworm_arm64.deb | |
- name: Upload Artifact as Release Asset | |
if: github.event_name == 'release' | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ github.event.release.upload_url }} | |
asset_path: hangover-libwow64fex_${{ env.HOVERSION }}~bookworm_arm64.deb | |
asset_name: hangover-libwow64fex_${{ env.HOVERSION }}~bookworm_arm64.deb | |
asset_content_type: application/vnd.debian.binary-package | |
qemu: | |
needs: foundation | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: free disk space | |
run: | | |
sudo swapoff -a | |
sudo rm -f /swapfile | |
sudo apt clean | |
df -h | |
- name: Cache docker image | |
id: cache-foundation | |
uses: actions/cache@v3 | |
env: | |
cache-name: cache-foundation | |
with: | |
path: foundationdeb12.tgz | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('.packaging/debian12/Dockerfile') }} | |
- name: Import docker image | |
run: docker image load -i foundationdeb12.tgz | |
- name: get version | |
run: git describe --tags | sed "s/hangover-/HOVERSION=/" >> "$GITHUB_ENV"; git describe --tags | sed "s/hangover-/HOVERSION=/" | |
- name: get shallow submodule | |
run: git submodule update --init --recursive --depth 1 qemu | |
- name: Setup packaging | |
run: | | |
cp -r .packaging/debian12/qemu/* qemu | |
sed -i "s/HOVERSION/${HOVERSION}/g" qemu/Dockerfile | |
sed -i "s/HOVERSION/${HOVERSION}/g" qemu/DEBIAN/control | |
cat qemu/Dockerfile | |
cat qemu/DEBIAN/control | |
nproc | |
- name: Build package | |
run: cd qemu; docker build -t qemudeb12 . | |
- name: Extract package | |
run: docker run --rm qemudeb12 cat /opt/deb/hangover-libqemu_${{ env.HOVERSION }}~bookworm_arm64.deb > hangover-libqemu_${{ env.HOVERSION }}~bookworm_arm64.deb | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: hangover-libqemu_${{ env.HOVERSION }}~bookworm_arm64.deb | |
path: hangover-libqemu_${{ env.HOVERSION }}~bookworm_arm64.deb | |
- name: Upload Artifact as Release Asset | |
if: github.event_name == 'release' | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ github.event.release.upload_url }} | |
asset_path: hangover-libqemu_${{ env.HOVERSION }}~bookworm_arm64.deb | |
asset_name: hangover-libqemu_${{ env.HOVERSION }}~bookworm_arm64.deb | |
asset_content_type: application/vnd.debian.binary-package | |
wine: | |
needs: foundation | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: free disk space | |
run: | | |
sudo swapoff -a | |
sudo rm -f /swapfile | |
sudo apt clean | |
df -h | |
- name: Cache docker image | |
id: cache-foundation | |
uses: actions/cache@v3 | |
env: | |
cache-name: cache-foundation | |
with: | |
path: foundationdeb12.tgz | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('.packaging/debian12/Dockerfile') }} | |
- name: Import docker image | |
run: docker image load -i foundationdeb12.tgz | |
- name: get version | |
run: git describe --tags | sed "s/hangover-/HOVERSION=/" >> "$GITHUB_ENV"; git describe --tags | sed "s/hangover-/HOVERSION=/" | |
- name: get shallow submodule | |
run: git submodule update --init --recursive --depth 1 wine | |
- name: Setup packaging | |
run: | | |
cp -r .packaging/debian12/wine/* wine | |
sed -i "s/HOVERSION/${HOVERSION}/g" wine/Dockerfile | |
cat wine/Dockerfile | |
cat wine/debian/changelog | |
nproc | |
- name: Adjust changelog for intermediate | |
if: github.event_name != 'release' | |
run: | | |
cp wine/debian/changelog wine/debian/changelog.old | |
echo "hangover-wine (${HOVERSION}~bookworm) UNRELEASED; urgency=low" > wine/debian/changelog.entry | |
echo "" >> wine/debian/changelog.entry | |
echo " * Intermediate build ${HOVERSION}~bookworm" >> wine/debian/changelog.entry | |
echo "" >> wine/debian/changelog.entry | |
echo -n " -- André Zwing <[email protected]> " >> wine/debian/changelog.entry | |
LC_TIME=en_US.UTF-8 date "+%a, %d %b %Y %H:%M:%S %z" >> wine/debian/changelog.entry | |
echo "" >> wine/debian/changelog.entry | |
cat wine/debian/changelog.entry wine/debian/changelog.old > wine/debian/changelog | |
rm wine/debian/changelog.entry wine/debian/changelog.old | |
cat wine/debian/changelog | |
- name: Adjust changelog for release | |
if: github.event_name == 'release' | |
run: | | |
cp wine/debian/changelog wine/debian/changelog.old | |
echo "hangover-wine (${HOVERSION}~bookworm) UNRELEASED; urgency=low" > wine/debian/changelog.entry | |
echo "" >> wine/debian/changelog.entry | |
echo " * Release ${HOVERSION}~bookworm" >> wine/debian/changelog.entry | |
echo "" >> wine/debian/changelog.entry | |
echo -n " -- André Zwing <[email protected]> " >> wine/debian/changelog.entry | |
LC_TIME=en_US.UTF-8 date "+%a, %d %b %Y %H:%M:%S %z" >> wine/debian/changelog.entry | |
echo "" >> wine/debian/changelog.entry | |
cat wine/debian/changelog.entry wine/debian/changelog.old > wine/debian/changelog | |
rm wine/debian/changelog.entry wine/debian/changelog.old | |
cat wine/debian/changelog | |
- name: Build package | |
run: cd wine; docker build -t winedeb12 . | |
- name: Extract package | |
run: docker run --rm winedeb12 cat /opt/hangover-wine_${{ env.HOVERSION }}~bookworm_arm64.deb > hangover-wine_${{ env.HOVERSION }}~bookworm_arm64.deb | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: hangover-wine_${{ env.HOVERSION }}~bookworm_arm64.deb | |
path: hangover-wine_${{ env.HOVERSION }}~bookworm_arm64.deb | |
- name: Upload Artifact as Release Asset | |
if: github.event_name == 'release' | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ github.event.release.upload_url }} | |
asset_path: hangover-wine_${{ env.HOVERSION }}~bookworm_arm64.deb | |
asset_name: hangover-wine_${{ env.HOVERSION }}~bookworm_arm64.deb | |
asset_content_type: application/vnd.debian.binary-package |