Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
bitmask-vpn
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
leap
bitmask-vpn
Commits
a4dad70d
Commit
a4dad70d
authored
2 years ago
by
jkito
Browse files
Options
Downloads
Patches
Plain Diff
[ghaci] Add github actions job to produce windows artifacts
parent
ad6c13cd
Branches
Branches containing commit
No related tags found
1 merge request
!160
Add github actions jobs for producing macOS and windows artifacts
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.github/workflows/nightly.yaml
+33
-2
33 additions, 2 deletions
.github/workflows/nightly.yaml
with
33 additions
and
2 deletions
.github/workflows/nightly.yaml
+
33
−
2
View file @
a4dad70d
...
...
@@ -6,6 +6,12 @@ name: 'mac and windows nightly build'
on
:
workflow_dispatch
:
inputs
:
debug_enabled
:
type
:
boolean
description
:
'
Run
the
build
with
tmate
debugging
enabled
(https://github.com/marketplace/actions/debugging-with-tmate)'
required
:
false
default
:
false
push
:
branches
:
-
main
...
...
@@ -23,8 +29,35 @@ jobs:
runs-on
:
-
windows-2019
steps
:
-
name
:
Setup Golang
1.17
uses
:
actions/setup-go@v3
with
:
go-version
:
'
1.17'
-
name
:
Install build dependencies from chocolatey
run
:
choco install qt5-default mingw sigcheck qt-installer-framework
-
run
:
git config --global core.autocrlf input
-
name
:
Checkout
uses
:
actions/checkout@v3
-
name
:
Set up Cygwin
uses
:
cygwin/cygwin-install-action@master
with
:
packages
:
make curl
-
name
:
Build app
run
:
|
$env:PATH="$env:SystemDrive\Qt\5.15.2\mingw81_64\bin;$env:SystemDrive\Qt\QtIFW-4.4.2\bin;$env:PATH"
echo $env:PATH
make build
make installer
-
name
:
Upload build/qt/release/riseup-vpn.exe
uses
:
actions/upload-artifact@v3
with
:
name
:
riseup-vpn-exe-${{ github.sha }}
path
:
build/qt/release/riseup-vpn.exe
-
name
:
Upload build/installer/RiseupVPN-installer-*.exe
uses
:
actions/upload-artifact@v3
with
:
name
:
riseup-vpn-installer-${{ github.sha }}
path
:
build/installer/*.exe
build-mac
:
runs-on
:
...
...
@@ -64,5 +97,3 @@ jobs:
with
:
name
:
riseup-vpn-dmg-${{ github.sha }}
path
:
deploy/RiseupVPN-unknown.dmg
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