forked from HaxeFoundation/haxe
-
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.
Merge remote-tracking branch 'remotes/original/4.3_bugfix'
# Conflicts: # .github/workflows/main.yml # Makefile # extra/github-actions/build-mac.yml # extra/github-actions/build-windows.yml # extra/github-actions/test-windows.yml # extra/github-actions/workflows/main.yml
- Loading branch information
Showing
119 changed files
with
1,219 additions
and
339 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
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,35 +1,28 @@ | ||
- name: Install dependencies | ||
env: | ||
# For compatibility with macOS 10.13 | ||
ZLIB_VERSION: 1.3 | ||
ZLIB_VERSION: 1.3.1 | ||
MBEDTLS_VERSION: 2.28.5 | ||
PCRE2_VERSION: 10.42 | ||
run: | | ||
set -ex | ||
brew uninstall [email protected] || echo | ||
brew uninstall [email protected] || echo | ||
brew untap local/openssl || echo | ||
brew untap local/python2 || echo | ||
brew update | ||
# brew unlink python@2 | ||
brew bundle --file=tests/Brewfile --no-upgrade || brew link --overwrite awscli | ||
brew install libunistring | ||
brew install cpanminus | ||
brew bundle --file=tests/Brewfile --no-upgrade | ||
cpanm IPC::System::Simple | ||
cpanm String::ShellQuote | ||
curl -L https://www.zlib.net/zlib-$ZLIB_VERSION.tar.gz | tar xz | ||
curl -L https://github.com/madler/zlib/releases/download/v$ZLIB_VERSION/zlib-$ZLIB_VERSION.tar.gz | tar xz | ||
cd zlib-$ZLIB_VERSION | ||
./configure | ||
make && make install | ||
sudo make && sudo make install | ||
cd .. | ||
curl -L https://github.com/ARMmbed/mbedtls/archive/v$MBEDTLS_VERSION.tar.gz | tar xz | ||
cd mbedtls-$MBEDTLS_VERSION | ||
make && make install | ||
sudo make && sudo make install | ||
cd .. | ||
curl -L https://github.com/PCRE2Project/pcre2/releases/download/pcre2-$PCRE2_VERSION/pcre2-$PCRE2_VERSION.tar.gz | tar xz | ||
cd pcre2-$PCRE2_VERSION | ||
./configure --enable-unicode --enable-pcre2-8 --enable-pcre2-16 --enable-pcre2-32 --enable-unicode-properties --enable-pcre2grep-libz --enable-pcre2grep-libbz2 --enable-jit | ||
make && make install | ||
sudo make && sudo make install | ||
cd .. | ||
- name: Install OCaml libraries | ||
|
@@ -38,10 +31,10 @@ | |
set -ex | ||
opam init # --disable-sandboxing | ||
opam update | ||
opam switch create 4.08.1 | ||
opam switch create ${{env.OCAML_VERSION}} | ||
eval $(opam env) | ||
opam env | ||
opam pin add ctypes 0.17.1 --yes | ||
opam pin add ctypes ${{env.CTYPES}} --yes | ||
opam pin add haxe . --no-action | ||
opam install haxe --deps-only --assume-depexts | ||
opam list | ||
|
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.