README.md: Update regarding the x86_64 emulation support #115
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: deb | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- '**' | |
paths-ignore: | |
- 'benchmarks/**' | |
- 'docs/**' | |
- 'README.md' | |
release: | |
types: [published] | |
jobs: | |
foundations: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
os: [debian11, debian12, ubuntu2004, ubuntu2204, ubuntu2404, ubuntu2410] | |
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@v4 | |
env: | |
cache-name: cache-foundation | |
with: | |
path: foundation${{ matrix.os }}.tgz | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles(format('.packaging/{0}/Dockerfile', matrix.os)) }} | |
lookup-only: true | |
- name: Setup packaging | |
if: ${{ steps.cache-foundation.outputs.cache-hit != 'true' }} | |
run: | | |
cp .packaging/${{ matrix.os }}/Dockerfile . | |
- name: Build package | |
if: ${{ steps.cache-foundation.outputs.cache-hit != 'true' }} | |
run: docker build -t foundation${{ matrix.os }} . | |
- name: Export docker image | |
if: ${{ steps.cache-foundation.outputs.cache-hit != 'true' }} | |
run: docker image save foundation${{ matrix.os }} | gzip -c > foundation${{ matrix.os }}.tgz | |
fex-pe: | |
needs: foundations | |
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@v4 | |
env: | |
cache-name: cache-foundation | |
with: | |
path: foundationubuntu2204.tgz | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('.packaging/ubuntu2204/Dockerfile') }} | |
- name: Import docker image | |
run: docker image load -i foundationubuntu2204.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/ubuntu2204/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 | |
sed -i "s/starting FEX based/starting FEX (Hangover ${HOVERSION}) based/g" fex/Source/Windows/ARM64EC/Module.cpp | |
sed -i "s/starting FEX based/starting FEX (Hangover ${HOVERSION}) based/g" fex/Source/Windows/WOW64/Module.cpp | |
nproc | |
- name: Build package | |
run: cd fex; docker build -t fexpe . | |
- name: Extract package | |
run: docker run --rm fexpe cat /opt/deb/hangover-libwow64fex_${{ env.HOVERSION }}_arm64.deb > hangover-libwow64fex_${{ env.HOVERSION }}_arm64.deb | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: hangover-libwow64fex_${{ env.HOVERSION }}_arm64.deb | |
path: hangover-libwow64fex_${{ env.HOVERSION }}_arm64.deb | |
fex-pe-ec: | |
needs: foundations | |
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@v4 | |
env: | |
cache-name: cache-foundation | |
with: | |
path: foundationubuntu2204.tgz | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('.packaging/ubuntu2204/Dockerfile') }} | |
- name: Import docker image | |
run: docker image load -i foundationubuntu2204.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/ubuntu2204/fexpeec/* fex | |
cp fex/LICENSE fex/DEBIAN/copyright | |
sed -i "s/HOVERSION/${HOVERSION}/g" fex/Dockerfile | |
sed -i "s/HOVERSION/${HOVERSION}/g" fex/DEBIAN/control | |
sed -i "s/starting FEX based/starting FEX (Hangover ${HOVERSION}) based/g" fex/Source/Windows/ARM64EC/Module.cpp | |
sed -i "s/starting FEX based/starting FEX (Hangover ${HOVERSION}) based/g" fex/Source/Windows/WOW64/Module.cpp | |
nproc | |
- name: Build package | |
run: cd fex; docker build -t fexpeec . | |
- name: Extract package | |
run: docker run --rm fexpeec cat /opt/deb/hangover-libarm64ecfex_${{ env.HOVERSION }}_arm64.deb > hangover-libarm64ecfex_${{ env.HOVERSION }}_arm64.deb | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: hangover-libarm64ecfex_${{ env.HOVERSION }}_arm64.deb | |
path: hangover-libarm64ecfex_${{ env.HOVERSION }}_arm64.deb | |
qemu: | |
needs: foundations | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
os: [debian11, debian12, ubuntu2004, ubuntu2204, ubuntu2404, ubuntu2410] | |
include: | |
- os: debian11 | |
codename: bullseye | |
- os: debian12 | |
codename: bookworm | |
- os: ubuntu2004 | |
codename: focal | |
- os: ubuntu2204 | |
codename: jammy | |
- os: ubuntu2404 | |
codename: noble | |
- os: ubuntu2410 | |
codename: oracular | |
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@v4 | |
env: | |
cache-name: cache-foundation | |
with: | |
path: foundation${{ matrix.os }}.tgz | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles(format('.packaging/{0}/Dockerfile', matrix.os)) }} | |
- name: Import docker image | |
run: docker image load -i foundation${{ matrix.os }}.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/${{ matrix.os }}/qemu/* qemu | |
sed -i "s/HOVERSION/${HOVERSION}/g" qemu/Dockerfile | |
sed -i "s/HOVERSION/${HOVERSION}/g" qemu/DEBIAN/control | |
nproc | |
- name: Build package | |
run: cd qemu; docker build -t qemu${{ matrix.os }} . | |
- name: Extract package | |
run: docker run --rm qemu${{ matrix.os }} cat /opt/deb/hangover-libqemu_${{ env.HOVERSION }}~${{ matrix.codename }}_arm64.deb > hangover-libqemu_${{ env.HOVERSION }}~${{ matrix.codename }}_arm64.deb | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: hangover-libqemu_${{ env.HOVERSION }}~${{ matrix.codename }}_arm64.deb | |
path: hangover-libqemu_${{ env.HOVERSION }}~${{ matrix.codename }}_arm64.deb | |
wine: | |
needs: foundations | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
os: [debian11, debian12, ubuntu2004, ubuntu2204, ubuntu2404, ubuntu2410] | |
include: | |
- os: debian11 | |
codename: bullseye | |
- os: debian12 | |
codename: bookworm | |
- os: ubuntu2004 | |
codename: focal | |
- os: ubuntu2204 | |
codename: jammy | |
- os: ubuntu2404 | |
codename: noble | |
- os: ubuntu2410 | |
codename: oracular | |
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@v4 | |
env: | |
cache-name: cache-foundation | |
with: | |
path: foundation${{ matrix.os }}.tgz | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles(format('.packaging/{0}/Dockerfile', matrix.os)) }} | |
- name: Import docker image | |
run: docker image load -i foundation${{ matrix.os }}.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/${{ matrix.os }}/wine/* wine | |
sed -i "s/HOVERSION/${HOVERSION}/g" wine/Dockerfile | |
nproc | |
- name: Adjust changelog for intermediate | |
if: github.event_name != 'release' | |
run: | | |
cp wine/debian/changelog wine/debian/changelog.old | |
echo "hangover-wine (${HOVERSION}~${{ matrix.codename }}) UNRELEASED; urgency=low" > wine/debian/changelog.entry | |
echo "" >> wine/debian/changelog.entry | |
echo " * Intermediate build ${HOVERSION}~${{ matrix.codename }}" >> wine/debian/changelog.entry | |
echo "" >> wine/debian/changelog.entry | |
echo -n " -- André Zwing <nerv@dawncrow.de> " >> 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}~${{ matrix.codename }}) UNRELEASED; urgency=low" > wine/debian/changelog.entry | |
echo "" >> wine/debian/changelog.entry | |
echo " * Release ${HOVERSION}~${{ matrix.codename }}" >> wine/debian/changelog.entry | |
echo "" >> wine/debian/changelog.entry | |
echo -n " -- André Zwing <nerv@dawncrow.de> " >> 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 wine${{ matrix.os }} . | |
- name: Extract package | |
run: docker run --rm wine${{ matrix.os }} cat /opt/hangover-wine_${{ env.HOVERSION }}~${{ matrix.codename }}_arm64.deb > hangover-wine_${{ env.HOVERSION }}~${{ matrix.codename }}_arm64.deb | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: hangover-wine_${{ env.HOVERSION }}~${{ matrix.codename }}_arm64.deb | |
path: hangover-wine_${{ env.HOVERSION }}~${{ matrix.codename }}_arm64.deb | |
bundle: | |
needs: [fex-pe, qemu, wine] | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
os: [debian11, debian12, ubuntu2004, ubuntu2204, ubuntu2404, ubuntu2410] | |
include: | |
- os: debian11 | |
codename: bullseye | |
- os: debian12 | |
codename: bookworm | |
- os: ubuntu2004 | |
codename: focal | |
- os: ubuntu2204 | |
codename: jammy | |
- os: ubuntu2404 | |
codename: noble | |
- os: ubuntu2410 | |
codename: oracular | |
steps: | |
- uses: actions/checkout@v1 | |
- name: free disk space | |
run: | | |
sudo swapoff -a | |
sudo rm -f /swapfile | |
sudo apt clean | |
df -h | |
- name: get version | |
run: git describe --tags | sed "s/hangover-/HOVERSION=/" >> "$GITHUB_ENV"; git describe --tags | sed "s/hangover-/HOVERSION=/" | |
- name: Download Artifacts 1/3 | |
uses: actions/download-artifact@v4 | |
with: | |
pattern: hangover*${{ matrix.codename }}_arm64.deb | |
merge-multiple: true | |
- name: Download Artifacts 2/3 | |
uses: actions/download-artifact@v4 | |
with: | |
pattern: hangover-libwow64fex*_arm64.deb | |
merge-multiple: true | |
- name: Download Artifacts 3/3 | |
uses: actions/download-artifact@v4 | |
with: | |
pattern: hangover-libarm64ecfex*_arm64.deb | |
merge-multiple: true | |
- name: Bundle | |
run: tar -cf hangover_${{ env.HOVERSION }}_${{ matrix.os }}_${{ matrix.codename }}_arm64.tar hangover*${{ matrix.codename }}_arm64.deb hangover-libwow64fex*_arm64.deb hangover-libarm64ecfex*_arm64.deb | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: hangover_${{ env.HOVERSION }}_${{ matrix.os }}_${{ matrix.codename }}_arm64.tar | |
path: hangover_${{ env.HOVERSION }}_${{ matrix.os }}_${{ matrix.codename }}_arm64.tar | |
retention-days: 14 | |
- 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_${{ env.HOVERSION }}_${{ matrix.os }}_${{ matrix.codename }}_arm64.tar | |
asset_name: hangover_${{ env.HOVERSION }}_${{ matrix.os }}_${{ matrix.codename }}_arm64.tar | |
asset_content_type: application/x-tar |