image: darkmattercoder/qt-build:latest #entrypoint: [""] stages: - Build - Run RWA:Build: stage: Build script: - apt update && apt -y install make autoconf - qmake rwa-support-desktopapp.pro - make artifacts: paths: - rwa-support-desktopapp expire_in: 2 weeks # Disabled because running the application would give an error # since there are no X.Org server, Wayland or other display servers available # RWA:Run: # stage: Run # script: # - echo "All files in git repo + artifact 'rwa-support-desktopapp':" # - find # - echo "Executing rwa-support-desktopapp" # - ./rwa-support-desktopapp # dependencies: # - RWA:Build # To be implemented. # RWA:Test: # stage: Test # script: # - echo "All files in git repo + artifact 'rwa-support-desktopapp':" # - find # dependencies: # - Build:Code