Skip to content

Commit

Permalink
Widnows build code
Browse files Browse the repository at this point in the history
  • Loading branch information
vit1251 committed Oct 23, 2020
1 parent 398da4b commit d840c64
Show file tree
Hide file tree
Showing 8 changed files with 51 additions and 25 deletions.
23 changes: 0 additions & 23 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,29 +2,6 @@ name: Go
on: [push]
jobs:

build-win32:
name: Build on Windows
runs-on: windows-latest
steps:
- name: Set up Go 1.15
uses: actions/setup-go@v1
with:
go-version: 1.15
id: go
- name: Install Task
uses: Arduino/actions/setup-taskfile@master
with:
version: '3.x'
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Make build
run: task
- name: Upload Widnows executable
uses: actions/upload-artifact@v1
with:
name: golden-windows-amd64
path: golden-windows-amd64.exe

build-linux:
name: Build on Ubuntu
runs-on: ubuntu-latest
Expand Down
9 changes: 9 additions & 0 deletions DEBIAN/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
gpoint (1.2.14-1) stable; urgency=medium
- Improve message body parser (enhancement)
- Remove JQuery dependency (enhancement)
- No store new config parameters (bug)
- No TZUTC kludge with timezone (bug)
- Unsafe kludge parsing TZUTC (bug)
- Missing EOB packet in mailer component (bug)
- Show message source (enhancement)
- Store original packet on storage (enhancement)
gpoint (1.2.13-1) stable; urgency=medium
- Initial implementation terminal user interface
- Netmail view counter
Expand Down
2 changes: 1 addition & 1 deletion DEBIAN/control
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: gpoint
Priority: extra
Version: 1.2.13-1
Version: 1.2.14-1
Section: misc
Architecture: amd64
Depends:
Expand Down
2 changes: 1 addition & 1 deletion Taskfile_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ tasks:

package:
cmds:
- echo "No package."
- build.bat
2 changes: 2 additions & 0 deletions build.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
@echo off
"C:\Program Files (x86)\Inno Setup 6\ISCC.exe" .\contrib\setup.iss
Binary file added contrib/Output/mysetup.exe
Binary file not shown.
18 changes: 18 additions & 0 deletions contrib/Windows.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
�������� ����������� ��� Widnwos
================================

�����������
-----------

��� �������� ������������� ������ ���������� ���������� Inno. ���������� �������� �� ������:

* https://jrsoftware.org/download.php/is.exe?site=1

������ �����������
------------------

���������� ��������� �������:

C:\WORK\GoldenPoint\> iscc setup.iss

��� �� ��� ����������� � ����� build.bat � ����� ��������� ����.
20 changes: 20 additions & 0 deletions contrib/setup.iss
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@

[Setup]
AppName=Golden Point
AppVersion=1.2.14
DefaultDirName={autopf}\Golden Point
DefaultGroupName=Golden Point

[Components]
Name: "main"; Description: "Main Files"; Types: full compact custom; Flags: fixed

[Tasks]
Name: desktopicon; Description: "Create a &desktop icon"; GroupDescription: "Additional icons:"; Components: main

[Files]
Source: "..\golden-windows-386.exe"; DestDir: "{app}"
Source: "..\golden-windows-amd64.exe"; DestDir: "{app}"

[Icons]
Name: "{group}\Golden Point"; Filename: "{app}\golden-windows-386.exe"; Components: main; Tasks: desktopicon
Name: "{group}\Golden Point"; Filename: "{app}\golden-windows-amd64.exe"; Components: main; Tasks: desktopicon

0 comments on commit d840c64

Please sign in to comment.