Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
nheko
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
Nheko Reborn
nheko
Commits
2749afbb
Commit
2749afbb
authored
6 years ago
by
Konstantinos Sideris
Browse files
Options
Downloads
Patches
Plain Diff
Fix the appimage generation
parent
a72eca33
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
.ci/bintray-release.json
+2
-2
2 additions, 2 deletions
.ci/bintray-release.json
.ci/install.sh
+4
-3
4 additions, 3 deletions
.ci/install.sh
.ci/linux/deploy.sh
+4
-0
4 additions, 0 deletions
.ci/linux/deploy.sh
.travis.yml
+1
-0
1 addition, 0 deletions
.travis.yml
appveyor.yml
+6
-14
6 additions, 14 deletions
appveyor.yml
with
17 additions
and
19 deletions
.ci/bintray-release.json
+
2
−
2
View file @
2749afbb
...
...
@@ -5,14 +5,14 @@
"matrixParams"
:
{
"override"
:
1
},
"uploadPattern"
:
"VERSION_NAME_VALUE/nheko-VERSION_NAME_VALUE.dmg"
"uploadPattern"
:
"
nheko/
VERSION_NAME_VALUE/nheko-VERSION_NAME_VALUE.dmg"
},
{
"includePattern"
:
"nheko-VERSION_NAME_VALUE-x86_64.AppImage"
,
"matrixParams"
:
{
"override"
:
1
},
"uploadPattern"
:
"VERSION_NAME_VALUE/nheko-VERSION_NAME_VALUE-x86_64.AppImage"
"uploadPattern"
:
"
nheko/
VERSION_NAME_VALUE/nheko-VERSION_NAME_VALUE-x86_64.AppImage"
}
],
"package"
:
{
...
...
This diff is collapsed.
Click to expand it.
.ci/install.sh
+
4
−
3
View file @
2749afbb
...
...
@@ -5,7 +5,7 @@ set -ex
if
[
$TRAVIS_OS_NAME
==
osx
]
;
then
brew update
brew
install
qt5 lmdb clang-format ninja libsodium spdlog
brew upgrade boost
brew upgrade boost
cmake
curl https://bootstrap.pypa.io/get-pip.py
-o
get-pip.py
sudo
python get-pip.py
...
...
@@ -24,16 +24,17 @@ if [ $TRAVIS_OS_NAME == linux ]; then
QT_PKG
=
"59"
fi
wget https://cmake.org/files/v3.11/cmake-3.11.4-Linux-x86_64.sh
sudo
sh cmake-3.11.4-Linux-x86_64.sh
--skip-license
--prefix
=
/usr/local
sudo
add-apt-repository
-y
ppa:chris-lea/libsodium
sudo
add-apt-repository
-y
ppa:beineri/opt-qt
${
QT_VERSION
}
-trusty
sudo
add-apt-repository
-y
ppa:george-edison55/cmake-3.x
sudo
apt-get update
-qq
sudo
apt-get
install
-qq
-y
\
qt
${
QT_PKG
}
base
\
qt
${
QT_PKG
}
tools
\
qt
${
QT_PKG
}
svg
\
qt
${
QT_PKG
}
multimedia
\
cmake
\
liblmdb-dev
\
libsodium-dev
fi
This diff is collapsed.
Click to expand it.
.ci/linux/deploy.sh
+
4
−
0
View file @
2749afbb
...
...
@@ -32,6 +32,10 @@ unset LD_LIBRARY_PATH
export
ARCH
=
$(
uname
-m
)
if
[
!
-z
$TRAVIS_TAG
]
;
then
export
LD_LIBRARY_PATH
=
.deps/usr/lib/:/opt/qt
${
QT_PKG
}
/lib/:
$LD_LIBRARY_PATH
fi
./linuxdeployqt
*
.AppImage
${
DIR
}
/usr/share/applications/
*
.desktop
-bundle-non-qt-libs
./linuxdeployqt
*
.AppImage
${
DIR
}
/usr/share/applications/
*
.desktop
-appimage
...
...
This diff is collapsed.
Click to expand it.
.travis.yml
+
1
−
0
View file @
2749afbb
...
...
@@ -63,6 +63,7 @@ before_install:
install
:
-
./.ci/install.sh
-
export PATH=/usr/local/bin:${PATH}
script
:
-
./.ci/script.sh
...
...
This diff is collapsed.
Click to expand it.
appveyor.yml
+
6
−
14
View file @
2749afbb
...
...
@@ -6,6 +6,10 @@ configuration: Release
image
:
Visual Studio
2017
platform
:
x64
environment
:
BINTRAY_APIKEY
:
secure
:
"
hhhAH6csIrPEVH92NNQkiGCkuON6l6sfhbZk+pvzDAM3vHex7YbqFKW6v5UjAS8v"
cache
:
c:\tools\vcpkg\installed\
build
:
...
...
@@ -114,20 +118,8 @@ after_build:
-
mv nheko-installer.exe nheko-%APPVEYOR_REPO_TAG_NAME%-installer.exe
deploy
:
provider
:
BinTray
username
:
mujx
api_key
:
secure
:
"
hhhAH6csIrPEVH92NNQkiGCkuON6l6sfhbZk+pvzDAM3vHex7YbqFKW6v5UjAS8v"
subject
:
mujx
repo
:
matrix
package
:
nheko
version
:
$(APPVEYOR_REPO_TAG_NAME)
publish
:
true
override
:
true
artifact
:
nheko-$(APPVEYOR_REPO_TAG_NAME)-installer.exe
on
:
appveyor_repo_tag
:
true
on_success
:
-
if "%APPVEYOR_REPO_TAG%" == "true" (curl -T nheko-%APPVEYOR_REPO_TAG_NAME%-installer.exe -umujx:%BINTRAY_APIKEY% https://api.bintray.com/content/mujx/matrix/nheko/%APPVEYOR_REPO_TAG_NAME%/nheko/%APPVEYOR_REPO_TAG_NAME%/)
artifacts
:
-
path
:
nheko_win_64.zip
...
...
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