BUILD: macos - use matrix for builds, export proper cpu/arch when doi… #111
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: build and deploy snapshots | |
on: [push] | |
jobs: | |
windows-build: | |
if: github.repository == 'QW-Group/ezquake-source' | |
runs-on: windows-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
target: [windows-multi-x64] | |
include: | |
- target: windows-multi-x64 | |
config: rls-all | |
platform: x64 | |
triplet: x64-windows-static | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Setup vcpkg (it does not install any package yet) | |
uses: lukka/run-vcpkg@v11 | |
- name: Add msbuild to PATH | |
uses: microsoft/setup-msbuild@v1.1 | |
- name: Build txt2c | |
run: msbuild misc\vstudio\txt2c\txt2c.vcxproj -t:rebuild -property:Configuration=Release | |
- name: Make dir | |
run: mkdir .vs | |
- name: Copy txt2c | |
run: cp misc\vstudio\txt2c\.vs\txt2c.exe .vs\ | |
- name: Build ezquake | |
run: msbuild ezQuake.vcxproj -t:rebuild -property:Configuration=${{ matrix.config }} -property:Platform=${{ matrix.platform }} -property:VcpkgEnableManifest=true | |
env: | |
VcpkgConfiguration: Release | |
VcpkgTriplet: ${{ matrix.triplet }} | |
- name: Create checksum | |
run: | | |
md5sum .vs\${{ matrix.platform }}\${{ matrix.config }}\Output\ezQuake.exe > .vs\${{ matrix.platform }}\${{ matrix.config }}\Output\ezQuake.md5 | |
- name: Invoke msys | |
uses: msys2/setup-msys2@v2 | |
with: | |
install: openssh | |
- name: Setup SSH | |
shell: msys2 {0} | |
env: | |
SSH_AUTH_SOCK: C:\ssh_agent.sock | |
run: | | |
ssh-agent -a $SSH_AUTH_SOCK > /dev/null | |
ssh-add - <<< "${{ secrets.SSH_PRIVATE_KEY }}" | |
- name: Set date | |
shell: msys2 {0} | |
run: | | |
export TZ=CET-1CEST | |
echo "DATE=$(date "+%Y%m%d-%H%M%S")" >> $GITHUB_ENV | |
- name: Deploy | |
shell: msys2 {0} | |
env: | |
SSH_AUTH_SOCK: C:\ssh_agent.sock | |
run: | | |
mkdir -p upload/snapshots/windows/${{ matrix.platform }}/${{ matrix.config }} | |
mkdir -p upload/snapshots/latest/windows/${{ matrix.platform }}/${{ matrix.config }} | |
cp .vs/${{ matrix.platform }}/${{ matrix.config }}/Output/ezQuake.exe upload/snapshots/windows/${{ matrix.platform }}/${{ matrix.config }}/${{ env.DATE }}_${GITHUB_SHA::7}_ezquake.exe | |
cp .vs/${{ matrix.platform }}/${{ matrix.config }}/Output/ezQuake.md5 upload/snapshots/windows/${{ matrix.platform }}/${{ matrix.config }}/${{ env.DATE }}_${GITHUB_SHA::7}_ezquake.md5 | |
cp .vs/${{ matrix.platform }}/${{ matrix.config }}/Output/ezQuake.exe upload/snapshots/latest/windows/${{ matrix.platform }}/${{ matrix.config }}/ezquake.exe | |
cp .vs/${{ matrix.platform }}/${{ matrix.config }}/Output/ezQuake.md5 upload/snapshots/latest/windows/${{ matrix.platform }}/${{ matrix.config }}/ezquake.md5 | |
sftp -rp -o 'StrictHostKeyChecking no' -o 'UserKnownHostsFile /dev/null' -P ${{ secrets.SFTP_PORT }} ${{ secrets.SFTP_USERNAME }}@${{ secrets.SFTP_HOST }}:/snapshots <<< $'put -rp upload/snapshots/*' | |
linux-build: | |
if: github.repository == 'QW-Group/ezquake-source' | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
target: [linux-x86_64] | |
include: | |
- target: linux-x86_64 | |
platform: x86_64 | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Install dependencies | |
run: sudo apt-get install libfuse2 openssh-client | |
- name: Build | |
run: ./misc/appimage/appimage-manual_creation.sh | |
- name: Create checksum | |
run: | | |
md5sum ezQuake-${{ matrix.platform }}.AppImage > ezQuake-${{ matrix.platform }}.AppImage.md5 | |
- name: Setup SSH | |
env: | |
SSH_AUTH_SOCK: /tmp/ssh_agent.sock | |
run: | | |
ssh-agent -a $SSH_AUTH_SOCK > /dev/null | |
ssh-add - <<< "${{ secrets.SSH_PRIVATE_KEY }}" | |
- name: Set date | |
run: | | |
export TZ=CET-1CEST | |
echo "DATE=$(date "+%Y%m%d-%H%M%S")" >> $GITHUB_ENV | |
- name: Deploy | |
env: | |
SSH_AUTH_SOCK: /tmp/ssh_agent.sock | |
run: | | |
mkdir -p upload/snapshots/linux/${{ matrix.platform }} | |
mkdir -p upload/snapshots/latest/linux/${{ matrix.platform }} | |
cp ezQuake-${{ matrix.platform }}.AppImage upload/snapshots/linux/${{ matrix.platform }}/${{ env.DATE }}_${GITHUB_SHA::7}_ezQuake-${{ matrix.platform }}.AppImage | |
cp ezQuake-${{ matrix.platform }}.AppImage.md5 upload/snapshots/linux/${{ matrix.platform }}/${{ env.DATE }}_${GITHUB_SHA::7}_ezQuake-${{ matrix.platform }}.AppImage.md5 | |
cp ezQuake-${{ matrix.platform }}.AppImage upload/snapshots/latest/linux/${{ matrix.platform }}/ezQuake-${{ matrix.platform }}.AppImage | |
cp ezQuake-${{ matrix.platform }}.AppImage.md5 upload/snapshots/latest/linux/${{ matrix.platform }}/ezQuake-${{ matrix.platform }}.AppImage.md5 | |
sftp -rp -o 'StrictHostKeyChecking no' -o 'UserKnownHostsFile /dev/null' -P ${{ secrets.SFTP_PORT }} ${{ secrets.SFTP_USERNAME }}@${{ secrets.SFTP_HOST }}:/snapshots <<< $'put -rp upload/snapshots/*' |