Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
pyodide
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
pyodide
Commits
757725bf
Commit
757725bf
authored
Jul 24, 2018
by
Michael Droettboom
Committed by
GitHub
Jul 24, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #88 from mdboom/ccache
Use ccache to speed up rebuilds
parents
40ea94b4
4fe9f5cd
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
33 additions
and
8 deletions
+33
-8
.circleci/config.yml
.circleci/config.yml
+5
-3
.gitignore
.gitignore
+1
-0
Makefile
Makefile
+21
-2
Makefile.envs
Makefile.envs
+1
-1
README.md
README.md
+2
-0
cpython/Setup.local
cpython/Setup.local
+1
-1
test/test_python.py
test/test_python.py
+2
-1
No files found.
.circleci/config.yml
View file @
757725bf
...
...
@@ -17,7 +17,7 @@ jobs:
# Set up the Debian testing repo, and then install g++ from there...
sudo bash -c "echo \"deb http://ftp.us.debian.org/debian testing main contrib non-free\" >> /etc/apt/sources.list"
sudo apt-get update
sudo apt-get install node-less cmake build-essential clang-format-6.0 flake8 uglifyjs python3-yaml chromium
sudo apt-get install node-less cmake build-essential clang-format-6.0 flake8 uglifyjs python3-yaml chromium
ccache
sudo apt-get install -t testing g++-8
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-6 60 --slave /usr/bin/g++ g++ /usr/bin/g++-6
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-8 80 --slave /usr/bin/g++ g++ /usr/bin/g++-8
...
...
@@ -47,18 +47,20 @@ jobs:
-
restore_cache
:
keys
:
-
v1-emsdk-{{ checksum "emsdk/Makefile" }}-v
4
-
v1-emsdk-{{ checksum "emsdk/Makefile" }}-v
6
-
run
:
name
:
build
no_output_timeout
:
1200
command
:
|
make
ccache -s
-
save_cache
:
paths
:
-
./emsdk/emsdk
key
:
v1-emsdk-{{ checksum "emsdk/Makefile" }}-v4
-
~/.ccache
key
:
v1-emsdk-{{ checksum "emsdk/Makefile" }}-v6
-
run
:
name
:
test
...
...
.gitignore
View file @
757725bf
...
...
@@ -13,6 +13,7 @@ build
downloads
host
installs
ccache
/root/
/build/
...
...
Makefile
View file @
757725bf
...
...
@@ -29,6 +29,7 @@ LDFLAGS=\
-s
WASM
=
1
\
-s
SWAPPABLE_ASM_MODULE
=
1
\
-s
USE_FREETYPE
=
1
\
-s
USE_LIBPNG
=
1
\
-std
=
c++14
\
-lstdc
++
\
--memory-init-file
0
...
...
@@ -126,7 +127,7 @@ clean:
%.bc
:
%.c $(CPYTHONLIB)
$(CC)
-o
$@
$<
$(CFLAGS)
$(CC)
-o
$@
-c
$<
$(CFLAGS)
build/test.data
:
$(CPYTHONLIB)
...
...
@@ -161,7 +162,25 @@ root/.built: \
touch
root/.built
$(CPYTHONLIB)
:
emsdk/emsdk/.complete
ccache/emcc
:
if
hash
ccache &>/dev/null
;
then
\
mkdir
-p
$(PYODIDE_ROOT)
/ccache
;
\
ln
-s
`
which ccache
`
$(PYODIDE_ROOT)
/ccache/emcc
;
\
else
\
ln
-s
emsdk/emsdk/emscripten/tag-1.38.4/emcc
$(PYODIDE_ROOT)
/ccache/emcc
;
\
fi
ccache/em++
:
if
hash
ccache &>/dev/null
;
then
\
mkdir
-p
$(PYODIDE_ROOT)
/ccache
;
\
ln
-s
`
which ccache
`
$(PYODIDE_ROOT)
/ccache/em++
;
\
else
\
ln
-s
emsdk/emsdk/emscripten/tag-1.38.4/em++
$(PYODIDE_ROOT)
/ccache/em++
;
\
fi
$(CPYTHONLIB)
:
emsdk/emsdk/.complete ccache/emcc ccache/em++
make
-C
$(CPYTHONROOT)
...
...
Makefile.envs
View file @
757725bf
export
PATH
:=
$(PYODIDE_ROOT)
/emsdk/emsdk:
$(PYODIDE_ROOT)
/emsdk/emsdk/clang/tag-e-1.38.4/build_tag-e1.38.4_64/bin:
$(PYODIDE_ROOT)
/emsdk/emsdk/node/8.9.1_64bit/bin:
$(PYODIDE_ROOT)
/emsdk/emsdk/emscripten/tag-1.38.4:
$(PYODIDE_ROOT)
/emsdk/emsdk/binaryen/tag-1.38.4_64bit_binaryen/bin:
$(PATH)
export
PATH
:=
$(PYODIDE_ROOT)
/
ccache:
$(PYODIDE_ROOT)
/
emsdk/emsdk:
$(PYODIDE_ROOT)
/emsdk/emsdk/clang/tag-e-1.38.4/build_tag-e1.38.4_64/bin:
$(PYODIDE_ROOT)
/emsdk/emsdk/node/8.9.1_64bit/bin:
$(PYODIDE_ROOT)
/emsdk/emsdk/emscripten/tag-1.38.4:
$(PYODIDE_ROOT)
/emsdk/emsdk/binaryen/tag-1.38.4_64bit_binaryen/bin:
$(PATH)
export
EMSDK
=
$(PYODIDE_ROOT)
/emsdk/emsdk
export
EM_CONFIG
=
$(PYODIDE_ROOT)
/emsdk/emsdk/.emscripten
...
...
README.md
View file @
757725bf
...
...
@@ -28,6 +28,8 @@ Additional build prerequisites are:
-
PyYAML
-
[
lessc
](
https://lesscss.org/
)
to compile less to css.
-
[
uglifyjs
](
https://github.com/mishoo/UglifyJS
)
to minify Javascript builds.
-
[
ccache
](
https://ccache.samba.org
)
(
optional
)
recommended for much faster rebuilds.
`make`
...
...
cpython/Setup.local
View file @
757725bf
...
...
@@ -24,7 +24,7 @@ _posixsubprocess _posixsubprocess.c
binascii binascii.c
zlib zlibmodule.c -IModules/zlib
zlib/adler32.c zlib/crc32.c zlib/deflate.c zlib/infback.c zlib/inffast.c zlib/inflate.c zlib/inftrees.c zlib/trees.c zlib/zutil.c zlib/compress.c zlib/uncompr.c zlib/gzclose.c zlib/gzlib.c zlib/gzread.c zlib/gzwrite.c
zlib zlibmodule.c -IModules/zlib
pyexpat expat/xmlparse.c expat/xmlrole.c expat/xmltok.c pyexpat.c -I$(srcdir)/Modules/expat -DHAVE_EXPAT_CONFIG_H -DUSE_PYEXPAT_CAPI -DXML_POOR_ENTROPY
...
...
test/test_python.py
View file @
757725bf
import
os
import
pathlib
import
time
...
...
@@ -286,7 +287,7 @@ def test_run_core_python_test(python_test, selenium):
def
pytest_generate_tests
(
metafunc
):
if
'python_test'
in
metafunc
.
fixturenames
:
test_modules
=
[]
if
True
:
if
'CIRCLECI'
not
in
os
.
environ
:
with
open
(
str
(
pathlib
.
Path
(
__file__
).
parents
[
0
]
/
"python_tests.txt"
))
as
fp
:
...
...
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