-
-
Notifications
You must be signed in to change notification settings - Fork 3
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
1 parent
9ed2d25
commit 4944abb
Showing
167 changed files
with
7,580 additions
and
38 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,40 @@ | ||
run.config: | ||
engine: php#option/no-default-cache-dirs | ||
engine.config: | ||
runtime: php-7.1 | ||
extensions: | ||
- xml | ||
- zephir_parser | ||
extra_packages: | ||
- go | ||
- autoconf | ||
- re2c | ||
cache_dirs: | ||
- .gopath | ||
extra_path_dirs: | ||
- .gopath/bin | ||
cwd: /app/.gopath/src/github.com/danhunsaker/calends | ||
extra_steps: | ||
- | | ||
# Set up Go stuff | ||
export GOPATH=/app/.gopath | ||
echo /app/.gopath > /data/etc/env.d/GOPATH | ||
mkdir -p /app/.gopath/{bin,src/github.com/danhunsaker} | ||
ln -sfT /app /app/.gopath/src/github.com/danhunsaker/calends | ||
cd /app/.gopath/src/github.com/danhunsaker/calends | ||
go get -t -v ./... | ||
- | | ||
# Install Zephir | ||
cd /data | ||
if [ ! -d zephir ] | ||
then | ||
git clone https://github.com/phalcon/zephir | ||
cd zephir | ||
else | ||
cd zephir | ||
git pull | ||
fi | ||
sed "s#%ZEPHIRDIR%#$(pwd)#g" bin/zephir > bin/zephir-cmd | ||
chmod 755 bin/zephir-cmd | ||
cp bin/zephir-cmd /data/bin/zephir | ||
rm bin/zephir-cmd |
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
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
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
Oops, something went wrong.
4944abb
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
PHP Support