Commit Graph

11 Commits

Author SHA1 Message Date
Carsten Grohmann
2d74af7032 Rename test task in build manifest
The "make test" tests not only the JS code in the browser, but also the
Python code directly without compilation.
2022-01-11 21:14:21 +01:00
Carsten Grohmann
e320fa56a0 Update copyright years 2022-01-02 13:35:09 +01:00
Carsten Grohmann
7d6ba199b7 Unify naming 2021-12-26 23:33:07 +01:00
Carsten Grohmann
f088d861e2 Fix wrong domain in email address 2021-09-04 22:49:48 +02:00
Carsten Grohmann
d5f07c92ad Using yay to install packages for test setup 2021-07-15 19:47:36 +02:00
Carsten Grohmann
ecf9ba11fd Add selenium based unit tests 2021-07-15 06:51:17 +02:00
Carsten Grohmann
e4629bf97b Disable optimizations to speedup build process 2021-07-12 20:49:27 +02:00
Carsten Grohmann
98c99fa57f Update copyright years 2021-02-05 17:04:09 +01:00
Carsten Grohmann
5d305307fe Restructure build recipe 2020-12-08 11:49:32 +01:00
Carsten Grohmann
1292d4f1e2 Pin build process to Python 3.7
After a package update, transcrypt produces incomplete JS:
__target__/OOMAnalyser.js (147:15)
145:       }
146:       if (cols_to_strip) {
147:         var line = ;
                        ^
148:       }
149:       if (line.startswith ('kernel:')) {

instead of
 146       if (cols_to_strip) {
 147         var line = __getitem__ ((function () {
 148           var __accu0__ = line;
 149           return __call__ (__accu0__.py_split, __accu0__, '     ', cols_to_strip);
 150         }) (), __neg__ (1));
 151       }
 152       if (line.startswith ('kernel:')) {

A temporary pinning of Transcrypt to Python 3.7 solves this issue.
2020-12-08 10:50:40 +01:00
Carsten Grohmann
2ca87a740b Add build manifest
to build all changes as a small test
2020-10-29 21:23:54 +01:00