Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Suyu
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
many-archive
Suyu
Commits
a7dae7fd
There was an error fetching the commit references. Please try again later.
Commit
a7dae7fd
authored
7 years ago
by
j-selby
Browse files
Options
Downloads
Patches
Plain Diff
Produce 7zip artifacts on Travis and Appveyor
parent
05a38e30
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.travis-deps.sh
+1
-1
1 addition, 1 deletion
.travis-deps.sh
.travis-upload.sh
+5
-0
5 additions, 0 deletions
.travis-upload.sh
.travis.yml
+2
-1
2 additions, 1 deletion
.travis.yml
appveyor.yml
+13
-2
13 additions, 2 deletions
appveyor.yml
with
21 additions
and
4 deletions
.travis-deps.sh
+
1
−
1
View file @
a7dae7fd
...
...
@@ -36,5 +36,5 @@ if [ "$TRAVIS_OS_NAME" = "linux" -o -z "$TRAVIS_OS_NAME" ]; then
elif
[
"
$TRAVIS_OS_NAME
"
=
"osx"
]
;
then
brew update
brew
install
qt5 sdl2 dylibbundler
brew
install
qt5 sdl2 dylibbundler
p7zip
fi
This diff is collapsed.
Click to expand it.
.travis-upload.sh
+
5
−
0
View file @
a7dae7fd
...
...
@@ -124,6 +124,11 @@ EOL
tar
$COMPRESSION_FLAGS
"
$ARCHIVE_NAME
"
"
$REV_NAME
"
mv
"
$REV_NAME
"
nightly
7z a
"
$REV_NAME
.7z"
nightly
# move the compiled archive into the artifacts directory to be uploaded by travis releases
mv
"
$ARCHIVE_NAME
"
artifacts/
mv
"
$REV_NAME
.7z"
artifacts/
fi
This diff is collapsed.
Click to expand it.
.travis.yml
+
2
−
1
View file @
a7dae7fd
...
...
@@ -19,6 +19,7 @@ addons:
-
libqt5opengl5-dev
-
xorg-dev
-
lib32stdc++6
# For CMake
-
p7zip-full
cache
:
directories
:
...
...
@@ -33,7 +34,7 @@ deploy:
api_key
:
secure
:
Mck15DIWaJdxDiS3aYVlM9N3G6y8VKUI1rnwII7/iolfm1s94U+tgvbheZDmT7SSbFyaGaYO/E8HrV/uZR9Vvs7ev20sHsTN1u60OTWfDIIyHs9SqjhcGbtq95m9/dMFschOYqTOR+gAs5BsxjuoeAotHdhpQEwvkO2oo5oR0zhGy45gjFnVvtcxT/IfpZBIpVgcK3aLb9zT6ekcJbSiPmEB15iLq3xXd0nFUNtEZdX3D6Veye4n5jB6n72qN8JVoKvPZAwaC2K0pZxpcGJaXDchLsw1q+4eCvdz6UJfUemeQ/uMAmjfeQ3wrzYGXe3nCM3WmX5wosCsB0mw4zYatzl3si6CZ1W+0GkV4Rwlx03dfp7v3EeFhTsXYCaXqhwuLZnWOLUik8t9vaSoFUx4nUIRwfO9kAMUJQSpLuHNO2nT01s3GxvqxzczuLQ9he5nGSi0RRodUzDwek1qUp6I4uV3gRHKz4B07YIc1i2fK88NLXjyQ0uLVZ+7Oq1+kgDp6+N7vvXXZ5qZ17tdaysSbKEE0Y8zsoXw7Rk1tPN19vrCS+TSpomNMyQyne1k+I5iZ/qkxPTLAS5qI6Utc2dL3GJdxWRAEfGNO9AIX3GV/jmmKfdcvwGsCYP8hxqs5vLYfgacw3D8NLf1941lQUwavC17jm9EV9g5G3Pn1Cp516E=
file_glob
:
true
file
:
"
artifacts/*
.tar.*
"
file
:
"
artifacts/*"
skip_cleanup
:
true
on
:
repo
:
citra-emu/citra-nightly
This diff is collapsed.
Click to expand it.
appveyor.yml
+
13
−
2
View file @
a7dae7fd
...
...
@@ -37,16 +37,25 @@ after_build:
# Where are these spaces coming from? Regardless, let's remove them
$MSVC_BUILD_NAME = "citra-windows-msvc-$GITDATE-$GITREV.zip" -replace " ", ""
$MSVC_BUILD_PDB = "citra-windows-msvc-$GITDATE-$GITREV-debugsymbols.zip" -replace " ", ""
$MSVC_SEVENZIP = "citra-windows-msvc-$GITDATE-$GITREV.7z" -replace " ", ""
$BINTRAY_VERSION = "nightly-$GIT_LONG_HASH" -replace " ", ""
# set the build names as env vars so the artifacts can upload them
$env:MSVC_BUILD_NAME = $MSVC_BUILD_NAME
$env:MSVC_BUILD_PDB = $MSVC_BUILD_PDB
$env:MSVC_SEVENZIP = $MSVC_SEVENZIP
$env:GITREV = $GITREV
7z a -tzip $MSVC_BUILD_PDB .\build\bin\release\*.pdb
rm .\build\bin\release\*.pdb
7z a -tzip $MSVC_BUILD_NAME .\build\bin\release\* .\license.txt .\README.md
mkdir nightly
Copy-Item .\build\bin\release\* -Destination nightly -Recurse
Copy-Item .\license.txt -Destination nightly
Copy-Item .\README.md -Destination nightly
7z a -tzip $MSVC_BUILD_NAME nightly\*
7z a $MSVC_SEVENZIP nightly
test_script
:
-
cd build && ctest -VV -C Release && cd ..
...
...
@@ -58,6 +67,8 @@ artifacts:
-
path
:
$(MSVC_BUILD_PDB)
name
:
msvcdebug
type
:
zip
-
path
:
$(MSVC_SEVENZIP)
name
:
msvcupdate
deploy
:
provider
:
GitHub
...
...
@@ -68,7 +79,7 @@ deploy:
Short Commit Hash $(GITREV)
auth_token
:
secure
:
"
dbpsMC/MgPKWFNJCXpQl4cR8FYhepkPLjgNp/pRMktZ8oLKTqPYErfreaIxb/4P1"
artifact
:
msvcbuild
artifact
:
msvcupdate,
msvcbuild
draft
:
false
prerelease
:
false
on
:
...
...
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