Skip to content
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

Feature/automation upload #102

Merged
merged 38 commits into from
Jun 3, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
9d7daee
Adding new authToken CLI param
lpusok May 21, 2019
39419dc
Exporting artifacts as io.Reader instead of file
lpusok May 21, 2019
00f830a
Migrate org/package names from bitrise-tools to bitrise-io
lpusok May 21, 2019
6b1c305
Added new functions to return certificates and profiles.
lpusok May 21, 2019
2b7d53c
Phase 1 complete, new flags wired in
lpusok May 22, 2019
5cb9d02
Phase 2
lpusok May 27, 2019
fc45bd8
Use common upload code for both automatic and user initiated upload o…
lpusok May 27, 2019
7055f4e
Renaming Certifificates and ProvisioningProfile fields
lpusok May 27, 2019
93e46a4
Seperate upload and artifact write into UploadAndWriteCodesignFiles
lpusok May 27, 2019
ef99ade
Separate UploadAndWriteCodesignFiles: moving out of ExportCodesignfil…
lpusok May 27, 2019
5cd80f6
Moving UploadAndWriteCodesignFiles() to codesign package, for reuse
lpusok May 27, 2019
c813f73
Use codesign.UploadAndWriteCodesignFiles in codesigndocuitest package
lpusok May 28, 2019
eed7714
Removing now renamed unused functions
lpusok May 28, 2019
caf15d4
Unexporting esport functions
lpusok May 28, 2019
89f7cb9
Renaming and removing unused functions in bitriseio
lpusok May 28, 2019
82b0ee4
Adding missing files
lpusok May 28, 2019
984f608
Migrating bitrise-init to bitrise-io org
lpusok May 28, 2019
8b61bcb
Removing unused functions
lpusok May 28, 2019
ab1971c
Using new GetAppList in bitrise.client
lpusok May 28, 2019
951c6e4
Removing unused function
lpusok May 28, 2019
636890a
removing unused function
lpusok May 28, 2019
0eb4966
Print a warning if not both app slug and personal access token is sep…
lpusok May 29, 2019
979843d
Move automatic codesign file upload to the scan command level
lpusok May 29, 2019
cb1349d
Print last lines of build log in case of error.
lpusok May 29, 2019
9139e86
Do not create export dir if write-files flag is false for Xcode UI te…
lpusok May 29, 2019
03dfb5e
removing gows.yml as it is unused
lpusok May 29, 2019
4ead5d4
Fixing scan command flags, revise failed build logging
lpusok May 29, 2019
53e5022
Simplifiing file upload, omit file name if not needed in function par…
lpusok May 29, 2019
53c83c8
Updating file write handling, now have 3 options always, fallback, di…
lpusok May 30, 2019
9dd01fc
Typo fix
lpusok May 30, 2019
7b54028
Fixing output dir creation
lpusok May 30, 2019
d5d1f24
Fixing UploadAndWriteCodesignFiles error handling
lpusok May 30, 2019
f8d2871
Restoring logic to open saved files folder after uplopading
lpusok May 30, 2019
32425b3
Removing duplicated log line
lpusok May 30, 2019
a064848
Removing redundant http upload functions
lpusok May 30, 2019
85f5627
Update CLI help, write log files on failure if write-files flag is se…
lpusok May 31, 2019
3150f1d
dep update
lpusok May 31, 2019
364b302
Remove empty line in imports
lpusok May 31, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
163 changes: 90 additions & 73 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 11 additions & 11 deletions Gopkg.toml
Original file line number Diff line number Diff line change
@@ -1,39 +1,39 @@

[[constraint]]
branch = "master"
name = "github.com/bitrise-io/bitrise-init"

[[constraint]]
branch = "master"
name = "github.com/bitrise-io/go-utils"

[[constraint]]
branch = "master"
name = "github.com/bitrise-io/goinp"
name = "github.com/bitrise-io/go-xamarin"

[[constraint]]
branch = "master"
name = "github.com/bitrise-tools/go-xamarin"
name = "github.com/bitrise-io/go-xcode"

[[constraint]]
branch = "master"
name = "github.com/bitrise-tools/go-xcode"
name = "github.com/bitrise-io/goinp"

[[constraint]]
branch = "master"
name = "github.com/bitrise-tools/xcode-project"
name = "github.com/bitrise-io/xcode-project"

[[constraint]]
name = "github.com/pkg/errors"
branch = "master"
version = "0.8.1"

[[constraint]]
name = "github.com/spf13/cobra"
branch = "master"
version = "0.0.4"

[[constraint]]
name = "github.com/stretchr/testify"
branch = "master"

[[constraint]]
name = "github.com/bitrise-core/bitrise-init"
branch = "master"
version = "1.3.0"

[prune]
go-tests = true
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2016 bitrise-tools
Copyright (c) 2016 Bitrise Ltd.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
Loading