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 ).
- Import the Git repository in GitLab (in this case the URL is https://github.com/Armadill0/harbour-tasklist.git)
- Create the GitLab CI YAML file with the following content:
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