Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
fengzch-das
multibuild
Commits
6be23d1e
Commit
6be23d1e
authored
Feb 16, 2022
by
Andrew Murray
Browse files
Merge branch 'devel' into pypy
parents
d02bed6e
678d8451
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
74 additions
and
23 deletions
+74
-23
.appveyor.yml
.appveyor.yml
+25
-21
.github/workflows/test.yml
.github/workflows/test.yml
+47
-0
tests/test_library_builders.sh
tests/test_library_builders.sh
+2
-2
No files found.
.appveyor.yml
View file @
6be23d1e
...
...
@@ -7,24 +7,24 @@ environment:
TEST_DEPENDS
:
"
nose"
matrix
:
-
PYTHON
:
"
C:
\\
Miniconda"
PYTHON_VERSION
:
"
2.7"
PYTHON_ARCH
:
"
32"
-
PYTHON
:
"
C:
\\
Miniconda-x64"
PYTHON_VERSION
:
"
2.7"
PYTHON_ARCH
:
"
64"
-
PYTHON
:
"
C:
\\
Miniconda35"
PYTHON_VERSION
:
"
3.5"
PYTHON_ARCH
:
"
32"
-
PYTHON
:
"
C:
\\
Miniconda35-x64"
PYTHON_VERSION
:
"
3.5"
PYTHON_ARCH
:
"
64"
-
PYTHON
:
"
C:
\\
Miniconda36"
PYTHON_VERSION
:
"
3.6"
PYTHON_ARCH
:
"
32"
-
PYTHON
:
"
C:
\\
Miniconda36-x64"
PYTHON_VERSION
:
"
3.6"
PYTHON_ARCH
:
"
64"
#
- PYTHON: "C:\\Miniconda"
#
PYTHON_VERSION: "2.7"
#
PYTHON_ARCH: "32"
#
- PYTHON: "C:\\Miniconda-x64"
#
PYTHON_VERSION: "2.7"
#
PYTHON_ARCH: "64"
#
- PYTHON: "C:\\Miniconda35"
#
PYTHON_VERSION: "3.5"
#
PYTHON_ARCH: "32"
#
- PYTHON: "C:\\Miniconda35-x64"
#
PYTHON_VERSION: "3.5"
#
PYTHON_ARCH: "64"
#
- PYTHON: "C:\\Miniconda36"
#
PYTHON_VERSION: "3.6"
#
PYTHON_ARCH: "32"
#
- PYTHON: "C:\\Miniconda36-x64"
#
PYTHON_VERSION: "3.6"
#
PYTHON_ARCH: "64"
-
PYTHON
:
"
C:
\\
Miniconda37"
PYTHON_VERSION
:
"
3.7"
PYTHON_ARCH
:
"
32"
...
...
@@ -38,7 +38,7 @@ platform:
-
x64
matrix
:
fast_finish
:
tru
e
fast_finish
:
fals
e
install
:
# Install miniconda and fix headers
...
...
@@ -85,7 +85,11 @@ test_script:
-
ps
:
.\install_python.ps1
-
set PYTHON=C:\Python38
-
ps
:
.\install_python.ps1
-
set PYTHON=C:\Python39rc1-x64
-
set PYTHON=C:\Python39-x64
-
ps
:
.\install_python.ps1
-
set PYTHON=C:\Python39
-
ps
:
.\install_python.ps1
-
set PYTHON=C:\Python310-x64
-
ps
:
.\install_python.ps1
-
set PYTHON=C:\Python3
9rc
1
-
set PYTHON=C:\Python31
0
-
ps
:
.\install_python.ps1
.github/workflows/test.yml
0 → 100644
View file @
6be23d1e
# This is a basic workflow to help you get started with Actions
name
:
Test
# Controls when the workflow will run
on
:
# Triggers the workflow on push or pull request events but only for the devel branch
push
:
branches
:
[
devel
]
pull_request
:
branches
:
[
devel
]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch
:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs
:
# This workflow contains a single job called "build"
build
:
strategy
:
fail-fast
:
false
matrix
:
os
:
[
ubuntu-latest
]
# [ubuntu-latest, macos-latest, windows-latest]
python-version
:
[
"
3.10"
]
# ["2.7", "3.7", "3.8", "3.9", "3.10", "3.11", "pypy3"]
# The type of runner that the job will run on
runs-on
:
${{ matrix.os }}
# Steps represent a sequence of tasks that will be executed as part of the job
steps
:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
-
uses
:
actions/checkout@v2
-
uses
:
actions/setup-python@v2
with
:
python-version
:
${{ matrix.python-version }}
# Runs a single command using the runner's Python
-
name
:
Run a one-line script
shell
:
python
run
:
print("Hello, world!")
# Runs a set of commands using the runner's shell
-
name
:
Run a multi-line script
run
:
|
echo Add other actions to build,
echo test, and deploy your project.
tests/test_library_builders.sh
View file @
6be23d1e
...
...
@@ -27,7 +27,6 @@ fetch_unpack https://github.com/harfbuzz/harfbuzz/releases/download/2.7.4/harfbu
suppress build_bzip2
suppress build_openssl
suppress build_libpng
suppress build_libwebp
suppress build_szip
suppress build_swig
# We need to find a failable test for build_github
...
...
@@ -43,9 +42,10 @@ suppress build_flex
if
[[
$MB_ML_VER
!=
"_2_24"
]]
;
then
suppress build_openblas
fi
suppress ensure_xz
suppress build_tiff
suppress build_libwebp
suppress build_lcms2
suppress ensure_xz
suppress build_freetype
suppress build_libyaml
if
[
-z
"
$IS_MACOS
"
]
;
then
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment