File tree Expand file tree Collapse file tree 4 files changed +37
-9
lines changed
skel/ArduinoCreateAgent.app/Contents Expand file tree Collapse file tree 4 files changed +37
-9
lines changed Original file line number Diff line number Diff line change 7
7
8
8
jobs :
9
9
10
- test :
10
+ build :
11
11
strategy :
12
12
matrix :
13
13
# operating-system: [ubuntu-latest, windows-latest, macOS-latest]
90
90
# file: ./coverage_integ.txt
91
91
# flags: integ
92
92
93
- sign-and-notarize :
94
- needs : test
93
+ package-macOS :
94
+ needs : build
95
95
strategy :
96
96
matrix :
97
97
# operating-system: [windows-latest, macOS-latest]
@@ -100,8 +100,8 @@ jobs:
100
100
runs-on : ${{ matrix.operating-system }}
101
101
102
102
steps :
103
- - name : Disable EOL conversions
104
- run : git config --global core.autocrlf false
103
+ # - name: Disable EOL conversions
104
+ # run: git config --global core.autocrlf false
105
105
106
106
- name : Checkout
107
107
uses : actions/checkout@v2
@@ -110,9 +110,20 @@ jobs:
110
110
uses : actions/download-artifact@v2
111
111
with :
112
112
name : arduino-create-agent-${{ matrix.operating-system }}
113
+ path : arduino-create-agent
113
114
114
- - name : Download Gon
115
+ - name : Build .app
115
116
run : |
116
- wget -q https://github.com/mitchellh/gon/releases/download/v0.2.2/gon_0.2.2_macos.zip
117
- unzip gon_0.2.2_macos.zip -d /usr/local/bin
118
- rm -f gon_0.2.2_macos.zip
117
+ mkdir build
118
+ cp -r skel/ build
119
+ cp arduino-create-agent build/ArduinoCreateAgent.app/Contents/MacOS/Arduino_Create_Bridge
120
+ cp config.ini build/ArduinoCreateAgent.app/Contents/MacOS/
121
+
122
+ find build
123
+ shell : bash
124
+
125
+ # - name: Download Gon
126
+ # run: |
127
+ # wget -q https://github.com/mitchellh/gon/releases/download/v0.2.2/gon_0.2.2_macos.zip
128
+ # unzip gon_0.2.2_macos.zip -d /usr/local/bin
129
+ # rm -f gon_0.2.2_macos.zip
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?><!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"><plist version =" 1.0" ><dict ><key >CFBundlePackageType </key ><string >APPL </string ><key >CFBundleInfoDictionaryVersion </key ><string >6.0 </string >
2
+
3
+ <key >CFBundleIconFile </key > <string >AppIcon.icns </string >
4
+
5
+ <key >CFBundleName </key > <string >Arduino Create Agent </string >
6
+ <key >CFBundleExecutable </key > <string >Arduino_Create_Bridge </string >
7
+ <key >CFBundleIdentifier </key > <string >create.arduino.cc </string >
8
+
9
+ <key >CFBundleVersion </key > <string >0.1 </string >
10
+ <key >NSHumanReadableCopyright </key > <string >© Copyright 2020 Arduino LLC </string >
11
+ <key >CFBundleShortVersionString </key > <string >0.1 </string >
12
+ <key >LSUIElement </key > <true />
13
+ <!-- Needed for Apache Callback -->
14
+ <key >NSPrincipalClass </key ><string >NSApplication </string >
15
+ <key >NSMainNibFile </key ><string >MainMenu </string >
16
+
17
+ </dict ></plist >
You can’t perform that action at this time.
0 commit comments