summaryrefslogtreecommitdiff
path: root/.gitlab/ci/package_macos.sh
blob: 7625c5d48a9fc2eeb7501f9c701fad1c87592cc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
cd build
cpack -G TGZ
cpack -G DragNDrop

case "$CMAKE_CI_PACKAGE" in
    dev)
        ;;
    *)
        mkdir -p unsigned
        mv cmake-*-macos*-universal.* unsigned/
        ;;
esac