-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update building & depedencies * Fix build for clang 7 * Xenial and s3 upload
- Loading branch information
Showing
11 changed files
with
136 additions
and
77 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
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
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,19 @@ | ||
if ($env:APPVEYOR_PULL_REQUEST_NUMBER -ne $null) { | ||
exit | ||
} | ||
|
||
$COMMIT_SHORT_SHA = git rev-parse --short HEAD | Out-String | ||
$COMMIT_NUM = git rev-list --count HEAD | Out-String | ||
$COMMIT_SHORT_SHA = $COMMIT_SHORT_SHA.Trim() | ||
$COMMIT_NUM = $COMMIT_NUM.Trim() | ||
$CC_VERSION = $env:APPVEYOR_BUILD_WORKER_IMAGE.Substring($env:APPVEYOR_BUILD_WORKER_IMAGE.Length - 4) | ||
|
||
if ($env:APPVEYOR_REPO_TAG_NAME -eq $null) { | ||
$ARCHIVE_NAME = "spmod-win32-$COMMIT_NUM-$COMMIT_SHORT_SHA-msvc$CC_VERSION-$env:LINK_TYPE.7z" | ||
7z a -t7z -mm=LZMA:d256m:fb64 -mx9 "$ARCHIVE_NAME" dlls scripts | ||
Push-AppveyorArtifact $ARCHIVE_NAME | ||
} else { | ||
$ARCHIVE_NAME = "spmod-win32-$env:APPVEYOR_REPO_TAG_NAME-msvc$CC_VERSION-$env:LINK_TYPE.7z" | ||
7z a -t7z -mm=LZMA:d256m:fb64 -mx9 "$ARCHIVE_NAME" dlls scripts | ||
Push-AppveyorArtifact $ARCHIVE_NAME | ||
} |
Submodule metamod-r
updated
from 93b5bd to 0cf2f7
Submodule rehlds
updated
from 65c6ce to 89be21
Submodule sourcepawn
updated
221 files
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
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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#!/bin/bash | ||
mkdir -p build | ||
cd build | ||
python /usr/bin/meson .. . --buildtype release --warnlevel 3 -D linktype=$LINK_TYPE | ||
python /usr/bin/meson .. . --buildtype release --warnlevel 3 -D linktype=$LINK_TYPE -D b_lto=true | ||
python /usr/bin/meson configure | ||
ninja -v |
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
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