mirror of
https://github.com/RandomityGuy/MBHaxe.git
synced 2025-10-30 08:11:25 +00:00
Updated config.yml
This commit is contained in:
parent
d70608acb8
commit
d0c220bdd8
1 changed files with 18 additions and 0 deletions
|
|
@ -11,10 +11,28 @@ jobs:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- checkout
|
- checkout
|
||||||
|
|
||||||
|
- run: |
|
||||||
|
set -eux
|
||||||
|
download_url="https://build.haxe.org/builds/haxe/mac/haxe_latest.tar.gz"
|
||||||
|
echo "Downloading [$download_url]..."
|
||||||
|
mkdir /tmp/haxe
|
||||||
|
curl -fsSL --retry 3 --retry-delay 5 "$download_url" -o /tmp/haxe.tar.gz
|
||||||
|
tar xzvf /tmp/haxe.tar.gz -C /tmp/haxe --strip-components=1
|
||||||
|
echo 'export PATH=/tmp/haxe/:"$PATH"' >> "$BASH_ENV"
|
||||||
|
echo "export HAXE_STD_PATH=/tmp/haxe/std" >> "$BASH_ENV"
|
||||||
|
source "$BASH_ENV"
|
||||||
|
/tmp/haxe/haxe --version
|
||||||
|
|
||||||
- run: |
|
- run: |
|
||||||
brew install cmake
|
brew install cmake
|
||||||
brew install libpthread-stubs
|
brew install libpthread-stubs
|
||||||
|
|
||||||
|
- run: |
|
||||||
|
set -eux
|
||||||
|
haxelib setup ~/haxelib
|
||||||
|
haxelib list
|
||||||
|
|
||||||
# Invoke jobs via workflows
|
# Invoke jobs via workflows
|
||||||
# See: https://circleci.com/docs/2.0/configuration-reference/#workflows
|
# See: https://circleci.com/docs/2.0/configuration-reference/#workflows
|
||||||
workflows:
|
workflows:
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue