Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
sakia
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
clients
python
sakia
Commits
7a78e9d4
Commit
7a78e9d4
authored
9 years ago
by
inso
Browse files
Options
Downloads
Plain Diff
Merge branch 'dev' of github.com:ucoin-io/sakia into dev
parents
34abc6f0
d4f62878
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
appveyor.yml
+9
-1
9 additions, 1 deletion
appveyor.yml
ci/appveyor/after_install.cmd
+3
-0
3 additions, 0 deletions
ci/appveyor/after_install.cmd
ci/appveyor/sakia.iss
+65
-0
65 additions, 0 deletions
ci/appveyor/sakia.iss
with
77 additions
and
1 deletion
appveyor.yml
+
9
−
1
View file @
7a78e9d4
...
@@ -48,9 +48,17 @@ build_script:
...
@@ -48,9 +48,17 @@ build_script:
-
"
.
\\
ci
\\
appveyor
\\
tests.cmd"
-
"
.
\\
ci
\\
appveyor
\\
tests.cmd"
-
echo %errorlevel%
-
echo %errorlevel%
# Windows Installer
-
if [%APPVEYOR_REPO_TAG_NAME%] neq [] choco install -y InnoSetup
-
if [%APPVEYOR_REPO_TAG_NAME%] neq [] set PATH="C:\Program Files (x86)\Inno Setup 5";%PATH%
-
if [%APPVEYOR_REPO_TAG_NAME%] neq [] iscc %cd%\ci\appveyor\sakia.iss /DROOT_PATH=%cd%
-
if [%APPVEYOR_REPO_TAG_NAME%] neq [] move %cd%\sakia.exe %cd%\sakia-%APPVEYOR_REPO_TAG_NAME%-win%PYTHON_ARCH%.exe
artifacts
:
artifacts
:
-
path
:
dist
-
path
:
dist
name
:
sakia-win$(PYTHON_ARCH)
name
:
sakia-win$(PYTHON_ARCH)
-
path
:
sakia*.exe
name
:
sakia-exe
# upload to releases
# upload to releases
deploy
:
deploy
:
tag
:
$(APPVEYOR_REPO_TAG_NAME)
tag
:
$(APPVEYOR_REPO_TAG_NAME)
...
@@ -58,7 +66,7 @@ deploy:
...
@@ -58,7 +66,7 @@ deploy:
provider
:
GitHub
provider
:
GitHub
auth_token
:
auth_token
:
secure
:
wbzlh6nx1zY1J1avlB0C3hKGm1abFNHBdM60u/U09i5Nam//D6kazvnv5ZBKdR89
secure
:
wbzlh6nx1zY1J1avlB0C3hKGm1abFNHBdM60u/U09i5Nam//D6kazvnv5ZBKdR89
artifact
:
sakia-
win$(PYTHON_ARCH)
artifact
:
/
sakia-
/
draft
:
true
draft
:
true
prerelease
:
true
prerelease
:
true
on
:
on
:
...
...
This diff is collapsed.
Click to expand it.
ci/appveyor/after_install.cmd
0 → 100644
+
3
−
0
View file @
7a78e9d4
@ECHO
OFF
rd
/s /q
%APPDATA%
\sakia
\ No newline at end of file
This diff is collapsed.
Click to expand it.
ci/appveyor/sakia.iss
0 → 100644
+
65
−
0
View file @
7a78e9d4
#define MyAppName "Sakia"
#define MyAppPublisher "Sakia team"
#define MyAppURL "http://sakia-wallet.org"
#define MyAppExeName "sakia.exe"
#if !Defined(ROOT_PATH)
#define ROOT_PATH "."
#endif
#define MyAppSrc ROOT_PATH
#define MyAppExe ROOT_PATH + "\dist\sakia\" + MyAppExeName
#pragma message MyAppSrc
#if !FileExists(MyAppExe)
#error "Unable to find MyAppExe"
#endif
#define MyAppVerStr "0.20.0dev7"
[Setup]
AppName={#MyAppName}
AppVersion={#MyAppVerStr}
AppPublisher={#MyAppPublisher}
AppPublisherURL={#MyAppURL}
AppSupportURL={#MyAppURL}
AppUpdatesURL={#MyAppURL}
DefaultDirName={pf}\{#MyAppName}
DisableDirPage=yes
DefaultGroupName={#MyAppName}
DisableProgramGroupPage=yes
OutputDir={#ROOT_PATH}
OutputBaseFilename={#MyAppName}
Compression=lzma
SolidCompression=yes
UninstallDisplayIcon={app}\{#MyAppExeName}
[Languages]
Name: "english"; MessagesFile: "compiler:Default.isl"
Name: "french"; MessagesFile: "compiler:Languages\French.isl"
[Tasks]
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
[Files]
Source: "{#MyAppSrc}\dist\sakia\*"; DestDir: "{app}\"; Flags: ignoreversion recursesubdirs
Source: "{#MyAppSrc}\sakia.ico"; DestDir: "{app}\"; Flags: ignoreversion recursesubdirs
Source: "{#MyAppSrc}\sakia.png"; DestDir: "{app}\"; Flags: ignoreversion recursesubdirs
Source: "{#MyAppSrc}\LICENSE"; DestDir: "{app}\"; Flags: ignoreversion recursesubdirs
Source: "{#MyAppSrc}\ci\appveyor\after_install.cmd"; DestDir: "{app}\"; Flags: ignoreversion
[Icons]
Name: "{group}\{#MyAppName}"; IconFilename: "{app}\sakia.ico"; Filename: "{app}\{#MyAppExeName}"
Name: "{group}\{cm:UninstallProgram,{#MyAppName}}"; Filename: "{uninstallexe}"
Name: "{commondesktop}\{#MyAppName}"; IconFilename: "{app}\sakia.ico"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon
[Run]
Filename: "{app}\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, '&', '&&')}}"; Flags: nowait postinstall skipifsilent
Filename: "{app}\after_install.cmd"; Description: "Delete ALL existing data"; Flags: postinstall nowait skipifsilent unchecked
[Setup]
; NOTE: The value of AppId uniquely identifies this application.
; Do not use the same AppId value in installers for other applications.
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
AppId={{E01B0960-74D2-8ACD-734E-8B3CB033B07F}
LicenseFile="{#MyAppSrc}\LICENSE"
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment