Can somone take over the development of Tasklist?

Since you aren’t asking for a feature request or a bug to get solved, I’ll try to describe here the required steps to perform a build for aarch64 on GitLab CI as wrote by CODeRUS (you could adapt these steps for GitHub too, but I like GitLab more :slight_smile: ).

    stages:
      - build

    aarch64:
      stage: build
      image: coderus/sailfishos-platform-sdk:3.4.0.24
      artifacts:
        paths:
          - "output/*"
      script:
        - mkdir output
        - mkdir ~/build
        - cp -r * ~/build
        - pushd ~/build
        - mb2 -t SailfishOS-3.4.0.24-aarch64 build
        - popd
        - cp -v ~/build/RPMS/* output
3 Likes