test_sdk/.gitea/workflows/test_sdk.yaml

74 lines
2.1 KiB
YAML
Raw Normal View History

name: Build Example
on:
push:
branches:
- main
jobs:
build:
2024-07-14 13:59:24 +03:00
runs-on: ubuntu-latest
2024-07-14 14:06:08 +03:00
#image: stateoftheartio/qt6:6.6-mingw-aqt
name: Build
steps:
2024-07-15 19:21:18 +03:00
2024-07-15 19:03:51 +03:00
- name: Apt update
run: sudo apt update
2024-07-15 19:21:18 +03:00
2024-07-15 19:03:51 +03:00
- name: Install qmake6 Using
run: |
sudo apt -y install moc qmake6 qt6-base-dev qt6-declarative-dev qt6-base-dev-tools cmake
- name: Change directory
#shell: bash
run: sudo dpkg -L qt6-base-dev
- name: Ls libexec MOC
run: ls -la /usr/lib/qt6/libexec
- name: Get all tags for correct version determination
working-directory: ${{ env.SOURCE_DIR }}
run: |
cd /root/.cache/act/mstanaev/
echo "Current dir: $PWD"
git clone https://git.gtlab.pro/mstanaev/test_sdk.git
cd test_sdk/core
qmake6 -o Makefile core.pro -spec linux-g++ CONFIG+=debug CONFIG+=qml_debug
# - name: locate
# run: sudo apt install locate
# - name: updatedb
# run: sudo updatedb
# - name: locate core.pro
# run: sudo locate core.pro
# - name: Generate qt6.conf based on the path to qmake6
# run: qtchooser -install qt6 $(which qmake6)
# - name: Move qt6.conf to system-wide dir
# run: sudo mv ~/.config/qtchooser/qt6.conf /usr/share/qtchooser/qt6.conf
# - name: Set Qt6 as default option 1
# run: sudo mkdir -p /usr/lib/$(uname -p)-linux-gnu/qt-default/qtchooser
# - name: Set Qt6 as default option 2
# run: sudo ln -n /usr/share/qtchooser/qt6.conf /usr/lib/$(uname -p)-linux-gnu/qt-default/qtchooser/default.conf
# - name: Generate qt6.conf based on path to qmake6
# run: qtchooser -install qt6 $(which qmake6)
# - name: Select Qt6 as default (place in ~/.bashrc for persistence)
# run: export QT_SELECT=qt6
2024-07-15 19:21:18 +03:00
# - name: Start qmake and make
# run: |
# qmake6 .
# cmake --install .
2024-07-15 19:21:18 +03:00
2024-07-15 19:03:51 +03:00
#- name: Docker container run
# run:
# runs: