Skip to content

replace font.bin with bitfont.bin #35

replace font.bin with bitfont.bin

replace font.bin with bitfont.bin #35

Workflow file for this run

name: Linux Release
on:
push:
branches:
- 'master'
- 'continuous-integration'
- 'cross-platform'
tags:
- 'v*'
pull_request:
branches:
- 'master'
- 'continuous-integration'
defaults:
run:
shell: bash
env:
SOURCE_DIR: ${{ github.workspace }}
QT_VERSION: 5.15.2
ARTIFACT: 'CS3MapEdit-x86_64.AppImage'
jobs:
build:
runs-on: ubuntu-20.04
steps:
- name: Checkout repo
uses: actions/checkout@v3
with:
submodules: recursive
- name: Install Qt
uses: jurplel/install-qt-action@v3
with:
version: ${{ env.QT_VERSION }}
host: linux
target: desktop
arch: gcc_64
dir: ${{ runner.temp }}
#modules: #qtcharts qt3d
setup-python: false
- name: Create build directory
run: mkdir ${{ env.SOURCE_DIR }}/build
- name: Build
working-directory: ${{ env.SOURCE_DIR }}/build
run: |
qmake -r ${{ env.SOURCE_DIR }}/mapedit.pro
make
- name: AppImage
working-directory: ${{ env.SOURCE_DIR }}/build
run: |
wget -O deploy.AppImage https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage
chmod +x deploy.AppImage
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:${{ github.workspace }}/Qt/5.15.2/gcc_64/lib/
ls ${{ env.SOURCE_DIR }}
cp ${{ env.SOURCE_DIR }}/linux/* .
./deploy.AppImage CS3MapEdit.desktop -appimage -no-translations -qmldir=${{ env.SOURCE_DIR }} -extra-plugins=renderers
ls -l
mkdir ${{ env.SOURCE_DIR }}/build/release
ls -l
mv CS3MapEdit*.AppImage ${{ env.SOURCE_DIR }}/build/release
- name: Linux artefact
uses: actions/upload-artifact@v1
with:
name: ${{ env.ARTIFACT }}
path: ${{ env.SOURCE_DIR }}/build/release