Skip to content
This repository was archived by the owner on Sep 16, 2024. It is now read-only.

Commit 0da0e46

Browse files
author
Catalin Ioana
authored
Merge pull request #503 from pycom/v1.20_merge_Dev
Merge Dev in Release/v1.20
2 parents a5aa0b8 + e14fa82 commit 0da0e46

File tree

500 files changed

+27332
-24801
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

500 files changed

+27332
-24801
lines changed

.gitignore

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111

1212
# Build directories
1313
######################
14-
esp32/build/*
15-
esp32/build-PYBYTES/*
14+
esp32/build/
15+
esp32/build-*/
1616
mpy-cross/build/*
1717
# This map file is generated here instead of the build folder...
1818
mpy-cross/*.map

Jenkinsfile

+16
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
def buildVersion
22
def boards_to_build = ["WiPy", "LoPy", "SiPy", "GPy", "FiPy", "LoPy4"]
33
def variants_to_build = [ "PYBYTES" ]
4+
// FIXME: there must be a better way of adding PYGATE to Jenkins, but it evades me :(
5+
def pygate_boards_to_build = ["WiPy", "GPy", "LoPy4"]
6+
def pygate_variants_to_build = [ "PYGATE" ]
47
def boards_to_test = ["00ec51"]
58
def open_thread
69

@@ -40,6 +43,19 @@ node {
4043
parallel parallelSteps
4144
}
4245
}
46+
47+
for (board in pygate_boards_to_build) {
48+
stage(board) {
49+
def parallelSteps = [:]
50+
for (variant in pygate_variants_to_build) {
51+
board_variant = board + "_" + variant
52+
open_thread = 'off'
53+
parallelSteps[board_variant] = boardBuild(board, variant, open_thread)
54+
}
55+
parallel parallelSteps
56+
}
57+
}
58+
4359
stash includes: '**/*.tar.gz', name: 'binary'
4460
stash includes: 'tests/**', name: 'tests'
4561
stash includes: 'tools/**', name: 'tools'

docs/2wipy/general.rst

-161
This file was deleted.

docs/2wipy/quickref.rst

-167
This file was deleted.

docs/2wipy/tutorial/index.rst

-16
This file was deleted.

0 commit comments

Comments
 (0)