Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ccpp_mac_rc.yml « workflows « .github - github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e1e82ab5852c41fba1142e0ded624d3871f21416 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
name: C/C++ Nigthly macos

on:
  push:
    branches:
      - rc

jobs:
  build:

    runs-on: macos-latest
    
    steps:
    - uses: actions/checkout@v2
      with:
        ref: 'Nigthly'
    - name: update submodule profiles
      working-directory: ./resources/profiles
      run: git submodule update --init
    - name: change date in version
      run: |
        sed "s/+UNKNOWN//" version.inc > version.date.inc
        mv version.date.inc version.inc
    - name: mkdir in deps
      run: mkdir deps/build
    - name: cmake deps
      working-directory: ./deps/build
      run: cmake .. -DCMAKE_OSX_DEPLOYMENT_TARGET="10.13"
    - name: make deps
      working-directory: ./deps/build
      run: make
    - name: ls libs
      working-directory: ./deps/build
      run: ls ./destdir/usr/local/lib
    - name: rename wxscintilla
      working-directory: ./deps/build/destdir/usr/local/lib
      run: cp libwxscintilla-3.1.a libwx_osx_cocoau_scintilla-3.1.a
    - name: ls libs
      working-directory: ./deps/build
      run: ls ./destdir/usr/local/lib
    - name: clean deps
      working-directory: ./deps/build
      run: rm -rf dep_*
    - name: mkdir build
      run: mkdir build
    - name: cmake
      working-directory: ./build
      run: cmake .. -DCMAKE_PREFIX_PATH="$PWD/../deps/build/destdir/usr/local" -DCMAKE_OSX_DEPLOYMENT_TARGET="10.13" -DSLIC3R_STATIC=1
    - name: make SuperSlicer
      working-directory: ./build
      run: make Slic3r
    - name: make .mo
      working-directory: ./build
      run: make gettext_po_to_mo
    - name: make .pot
      working-directory: ./build
      run: make gettext_make_pot
    - name: update Info.plist
      working-directory: ./build/src
      run: sed "s/+UNKNOWN/_$(date '+%F')/" Info.plist >Info.date.plist
    - name: create directory and copy into it
      working-directory: ./build
      run: |
        mkdir pack
        mkdir pack/SuperSlicer
        mkdir pack/SuperSlicer/SuperSlicer.app
        mkdir pack/SuperSlicer/SuperSlicer.app/Contents
        mkdir pack/SuperSlicer/SuperSlicer.app/Contents/_CodeSignature
        mkdir pack/SuperSlicer/SuperSlicer.app/Contents/Frameworks
        mkdir pack/SuperSlicer/SuperSlicer.app/Contents/MacOS
    - name: copy Resources
      working-directory: ./build
      run: |
        cp -Rf ../resources pack/SuperSlicer/SuperSlicer.app/Contents/Resources
        cp pack/SuperSlicer/SuperSlicer.app/Contents/Resources/icons/SuperSlicer.icns pack/SuperSlicer/SuperSlicer.app/Contents/resources/SuperSlicer.icns
        cp src/Info.date.plist pack/SuperSlicer/SuperSlicer.app/Contents/Info.plist
        echo -n -e 'APPL????\x0a' > PkgInfo
        cp PkgInfo pack/SuperSlicer/SuperSlicer.app/Contents/PkgInfo
#        echo -n -e '\xff\xfeAPPL\x3f\x00\x3f\x00\x3f\x00\x3f\x00\x0a\x00' > PkgInfo
    - name: copy bin and do not let it lower case
      working-directory: ./build
      run: |
        cp -f src/superslicer pack/SuperSlicer/SuperSlicer.app/Contents/MacOS/SuperSlicer
        chmod u+x pack/SuperSlicer/SuperSlicer.app/Contents/MacOS/SuperSlicer
        tar -cvf SuperSlicer.tar pack/SuperSlicer
    - name: create dmg
      working-directory: ./build
      run: |
        hdiutil create -ov -fs HFS+ -volname "SuperSlicer" -srcfolder "pack/SuperSlicer" temp.dmg
        hdiutil convert temp.dmg -format UDZO -o SuperSlicer.dmg
#    - name: signing Resources (creating CodeResources inside _CodeSignature)
#      working-directory: .
#      run: codesign -s <identity> Resources
# maybe i should just try to do that on a separate pc and copy the file here, more secure as a signing process.
    - name: Upload artifact
      uses: actions/upload-artifact@v1.0.0
      with:
        name: rc_macos.tar
        path: build/SuperSlicer.tar
    - name: Upload artifact
      uses: actions/upload-artifact@v1.0.0
      with:
        name: rc_macos.dmg
        path: build/SuperSlicer.dmg