-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
1,406 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
dist: xenial | ||
sudo: required | ||
|
||
branches: | ||
only: | ||
- master | ||
|
||
cache: | ||
directories: | ||
- $HOME/.cache | ||
|
||
env: | ||
global: | ||
- PRODUCT=netease-cloud-music | ||
|
||
matrix: | ||
include: | ||
- os: linux | ||
env: OS=ubuntu EXTEN=appimage | ||
services: docker | ||
language: cpp | ||
# - os: linux | ||
# env: OS=fedora EXTEN=appimage | ||
# services: docker | ||
# language: cpp | ||
|
||
before_install: | ||
|
||
install: | ||
|
||
|
||
script: | ||
- export ROOT_PATH="$(pwd)" | ||
- bash pkg2appimage-with-docker netease-cloud-music.yml | ||
|
||
after_success: | ||
- cd ${ROOT_PATH}/out | ||
- if [[ "${EXTEN}" == "appimage" ]]; then python3 ${ROOT_PATH}/scripts/services/transferwee.py upload NetEase_Cloud_Music-1.2.0.2.*.AppImage fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Beware: only meant for use with pkg2appimage-with-docker | ||
# Beware: only use for build netease-music-appimage | ||
|
||
FROM ubuntu:18.10 | ||
|
||
MAINTAINER "kelleg <[email protected]>" | ||
|
||
ENV DEBIAN_FRONTEND=noninteractive \ | ||
DOCKER_BUILD=1 | ||
|
||
RUN apt-get update && \ | ||
apt-get install -y apt-transport-https libcurl3-gnutls libarchive13 wget \ | ||
ca-cacert appstream desktop-file-utils fuse gnupg2 build-essential file \ | ||
libglib2.0-dev libglib2.0-bin git && install -m 0777 -d /workspace | ||
|
||
COPY docker/* /workspace/ | ||
RUN adduser --system --uid 1000 test | ||
|
||
WORKDIR /workspace | ||
|
Oops, something went wrong.