Skip to content

Port installer generation to github actions #562

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 60 commits into from
Nov 18, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
60 commits
Select commit Hold shift + click to select a range
682bbe2
Add a new release workflow
Oct 13, 2020
48cbc94
Expand sign-and-notarize step
Oct 13, 2020
25cb3dd
Rename artifacts
Oct 13, 2020
9a8bbb9
Updates setup-taskfile action
Oct 13, 2020
3dd921f
Fixes idiotic mistake
Oct 13, 2020
1b4bcbe
Add GITHUB_TOKEN
Oct 13, 2020
26f3e07
Restore repo-token input in setup-taskfile action
Oct 15, 2020
f5aefd3
Add build .app step
Oct 16, 2020
cc4f02f
Fix binary path after download
Oct 16, 2020
efea627
first test with floydpink/ubuntu-install-builder container
umbynos Oct 27, 2020
3834e7d
add artifact download
umbynos Oct 27, 2020
434a104
add checkout of the repo containing settings for the installer & bitr…
umbynos Oct 27, 2020
5f9f379
add upload artifact and various fixes
umbynos Oct 27, 2020
d48756a
test on license
umbynos Oct 28, 2020
aac2002
fine tuning and add of env vars
umbynos Oct 28, 2020
3af5264
ref cause error because of the "/"
umbynos Oct 28, 2020
0cfd4af
optimizations regarding executable name and x
umbynos Oct 28, 2020
1527a11
add config.ini to artifacts, optimizations
umbynos Oct 28, 2020
ae5b778
matrix introduced
umbynos Oct 29, 2020
05dcf51
add win & mac, introduced fail-fast
umbynos Oct 29, 2020
dcbfb27
fix mac installer generation failure without env variable
umbynos Oct 30, 2020
b1cc0e3
add multiple browser support
umbynos Oct 30, 2020
be95a86
rework browser, add copy/rename for every platform/browser
umbynos Oct 30, 2020
f7c8551
fix extension for mac not being assigned and causing failure in renaming
umbynos Oct 30, 2020
1ff1fad
remove debug prints and fix .app not being deleted
umbynos Oct 30, 2020
ea9d379
remove GITHUB_SHA and try with GITHUB_REF env var for naming
umbynos Nov 3, 2020
5584649
fix GITHUB_REF being interpreted as a path
umbynos Nov 4, 2020
71ee4a0
use 'linux-x64' instead of 'linux' as installbuilder platform (copy f…
umbynos Nov 4, 2020
4fd8884
add windows cert sign
umbynos Nov 4, 2020
de9cf7f
fix `base64: invalid input`
umbynos Nov 4, 2020
2afd35d
Merge branch 'devel' into umbynos/installers
umbynos Nov 5, 2020
8832509
add different build procedure for win (as in test.yml)
umbynos Nov 5, 2020
281fd59
fix executable not found during installer generation
umbynos Nov 5, 2020
aa9f440
add _cli executable for compatibility
umbynos Nov 5, 2020
0441a0c
Revert "fix `base64: invalid input`"
umbynos Nov 6, 2020
4e6a08c
Add codesign and notarization for macOS binary (#567)
Nov 10, 2020
584bf2d
build windows version for 32bit instead of 64bit (compatibility)
umbynos Nov 5, 2020
47652e0
move rsrc step in the CI outside the taskfile
umbynos Nov 11, 2020
a9fb9c3
remove "=" according to doc (problems on win)
umbynos Nov 12, 2020
4ce859e
add comments
umbynos Nov 12, 2020
15deaae
some env vars were not used
umbynos Nov 12, 2020
b3cb80b
replace third party action to handle keychain with shell commands
umbynos Nov 12, 2020
acb8f63
replac installation because it was not possible to install a specific…
umbynos Nov 12, 2020
4387fd9
update and pin installbuilder version
umbynos Nov 13, 2020
ab7d782
add timeout for notarization steps
umbynos Nov 13, 2020
b9b9ffe
remove temporary token used only for testing
umbynos Nov 13, 2020
15aa3a5
add proper trigger event
umbynos Nov 13, 2020
8ac92b3
add release step
umbynos Nov 13, 2020
27f4603
fix "Unable to find an artifact with the name: ArduinoCreateAgent-*"
umbynos Nov 13, 2020
d72111e
forgot token
umbynos Nov 13, 2020
0ab45ce
fix files not being added to the release and the double release problem
umbynos Nov 16, 2020
731d444
fix typo
umbynos Nov 16, 2020
62b4d00
standardize test.yaml to release.yaml
umbynos Nov 16, 2020
792c1bb
remove useless mac files (they are present in bcmi-labs/arduino-creat…
umbynos Nov 16, 2020
394c1ef
test updated action
umbynos Nov 16, 2020
40cd62c
Revert "test updated action"
umbynos Nov 16, 2020
4c5789d
fix typo
umbynos Nov 17, 2020
a308580
remove old upload artifact no longer needed in test workflow
umbynos Nov 17, 2020
99c2b46
remove useless steps (upload on download server will come in another PR)
umbynos Nov 17, 2020
b242243
change "macOS-latest" to "macos-latest"
umbynos Nov 17, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix binary path after download
  • Loading branch information
Maurizio Branca committed Oct 16, 2020
commit cc4f02f1aa12d82922c17c062e3b8b053cc02023
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ jobs:
run: |
mkdir build
cp -r skel/ build
cp arduino-create-agent build/ArduinoCreateAgent.app/Contents/MacOS/Arduino_Create_Bridge
cp arduino-create-agent/arduino-create-agent build/ArduinoCreateAgent.app/Contents/MacOS/Arduino_Create_Bridge
cp config.ini build/ArduinoCreateAgent.app/Contents/MacOS/

find build
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,6 @@ artifacts*

# IDEs config
.idea

# macOS
.DS_Store