File tree 2 files changed +8
-2
lines changed
2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 80
80
# For a list of SDKs available on Github Actions, see:
81
81
# https://github.com/actions/virtual-environments/blob/master/images/macos/macos-10.15-Readme.md
82
82
sudo xcode-select --switch /Applications/Xcode_11.3.1.app
83
+
84
+ # 2020-06-24: The Homebrew copy of gettext leaks into the macOS build
85
+ # if it is present. Uninstall gettext to make sure that doesn't happen.
86
+ sudo brew uninstall --ignore-dependencies gettext
87
+
88
+ # Do the build for the requested target.
83
89
make -e ${{ matrix.target }}
84
90
- name : Upload ${{ matrix.target }} release asset
85
91
uses : actions/upload-release-asset@v1
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ _abc _abc.c
6
6
_asyncio _asynciomodule.c
7
7
_bisect _bisectmodule.c
8
8
_blake2 _blake2/blake2module.c _blake2/blake2b_impl.c _blake2/blake2s_impl.c
9
- _bz2 _bz2module.c -I$(srcdir)/../bzip2/include -L$(srcdir)/../Support/BZip2 -lbz2
9
+ _bz2 _bz2module.c -I$(srcdir)/../Support/BZip2/Headers -L$(srcdir)/../Support/BZip2 -lbzip2
10
10
_codecs _codecsmodule.c
11
11
_codecs_cn cjkcodecs/_codecs_cn.c
12
12
_codecs_hk cjkcodecs/_codecs_hk.c
@@ -29,7 +29,7 @@ _io -DPy_BUILD_CORE -I$(srcdir)/Include/internal -I$(srcdir)/Modules/_io _io/_io
29
29
_json -I$(srcdir)/Include/internal -DPy_BUILD_CORE_BUILTIN _json.c
30
30
_locale _localemodule.c
31
31
_lsprof _lsprof.o rotatingtree.c
32
- _lzma _lzmamodule.c -I$(srcdir)/../xz/include -L$(srcdir)/../Support/XZ -llzma
32
+ _lzma _lzmamodule.c -I$(srcdir)/../Support/XZ/Headers -L$(srcdir)/../Support/XZ/ -lxz
33
33
_md5 md5module.c
34
34
_multibytecodec cjkcodecs/multibytecodec.c
35
35
_multiprocessing _multiprocessing/multiprocessing.c _multiprocessing/semaphore.c
You can’t perform that action at this time.
0 commit comments