i need help to create a yml on github for create a AppImage

This page summarizes the projects mentioned and recommended in the original post on /r/linux4noobs

Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
  • desmume

    DeSmuME is a Nintendo DS emulator (by JoseAAtoche)

  • I'm trying to create an AppImage directly from Github for the Desmume code: https://github.com/Zer077/desmume I have created a branch and I have created this file, but it gives me an error and I have spent hours and hours solving various errors and I have not been able to complete the process:

  • linuxdeploy

    AppDir creation and maintenance tool. Featuring flexible plugin system. (by linuxdeploy)

  • name: Build DeSmuME AppImage on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: name: Build DeSmuME AppImage runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v2 - name: Install libfuse2 and Qt dependencies run: | sudo apt-get update sudo apt-get -y install libfuse2 qtbase5-dev qtchooser - name: Install dependencies run: sudo apt update && sudo apt install meson libsdl2-dev libpcap-dev libgtk-3-dev libgtk2.0-dev autoconf libglu1-mesa-dev - name: Build DeSmuME run: | cd desmume/src/frontend/posix/ meson build ninja -C build - name: List Build Folder Contents run: | cd desmume/src/frontend/posix ls -la cd ./build ls -la - name: Find Executable run: | # Buscar el archivo ejecutable de manera recursiva en el directorio de construcción executable_path=$(find desmume/src/frontend -name "desmume" -type f -executable) # Verificar si se encontró el archivo ejecutable if [[ -n "$executable_path" ]]; then echo "Archivo ejecutable encontrado en la ruta: $executable_path" else echo "Archivo ejecutable no encontrado." exit 1 fi - name: Install linuxdeploy and plugins run: | wget https://github.com/linuxdeploy/linuxdeploy/releases/download/continuous/linuxdeploy-x86_64.AppImage wget https://github.com/linuxdeploy/linuxdeploy-plugin-qt/releases/download/continuous/linuxdeploy-plugin-qt-x86_64.AppImage chmod a+x linuxdeploy-x86_64.AppImage chmod a+x linuxdeploy-plugin-qt-x86_64.AppImage - name: Build AppImage run: | ./linuxdeploy-x86_64.AppImage --appdir AppDir --plugin qt --output appimage mkdir dist mv ./AppDir/*.AppImage dist/ - name: Upload AppImage artifact uses: actions/upload-artifact@v2 with: name: desmume-appimage path: ./dist/

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
  • linuxdeploy-plugin-qt

    Qt plugin for linuxdeploy, bundling Qt resources, plugins, QML files and a lot more.

  • name: Build DeSmuME AppImage on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: name: Build DeSmuME AppImage runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v2 - name: Install libfuse2 and Qt dependencies run: | sudo apt-get update sudo apt-get -y install libfuse2 qtbase5-dev qtchooser - name: Install dependencies run: sudo apt update && sudo apt install meson libsdl2-dev libpcap-dev libgtk-3-dev libgtk2.0-dev autoconf libglu1-mesa-dev - name: Build DeSmuME run: | cd desmume/src/frontend/posix/ meson build ninja -C build - name: List Build Folder Contents run: | cd desmume/src/frontend/posix ls -la cd ./build ls -la - name: Find Executable run: | # Buscar el archivo ejecutable de manera recursiva en el directorio de construcción executable_path=$(find desmume/src/frontend -name "desmume" -type f -executable) # Verificar si se encontró el archivo ejecutable if [[ -n "$executable_path" ]]; then echo "Archivo ejecutable encontrado en la ruta: $executable_path" else echo "Archivo ejecutable no encontrado." exit 1 fi - name: Install linuxdeploy and plugins run: | wget https://github.com/linuxdeploy/linuxdeploy/releases/download/continuous/linuxdeploy-x86_64.AppImage wget https://github.com/linuxdeploy/linuxdeploy-plugin-qt/releases/download/continuous/linuxdeploy-plugin-qt-x86_64.AppImage chmod a+x linuxdeploy-x86_64.AppImage chmod a+x linuxdeploy-plugin-qt-x86_64.AppImage - name: Build AppImage run: | ./linuxdeploy-x86_64.AppImage --appdir AppDir --plugin qt --output appimage mkdir dist mv ./AppDir/*.AppImage dist/ - name: Upload AppImage artifact uses: actions/upload-artifact@v2 with: name: desmume-appimage path: ./dist/

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts