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

Commit

Permalink
Merge pull request #475 from pycom/public_release_pygate_v1.20.2.rc11
Browse files Browse the repository at this point in the history
pygate v1.20.2.rc11
  • Loading branch information
Xykon authored Aug 25, 2020
2 parents 783192e + aeabdce commit d574024
Show file tree
Hide file tree
Showing 494 changed files with 26,705 additions and 24,595 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@

# Build directories
######################
esp32/build/*
esp32/build-PYBYTES/*
esp32/build/
esp32/build-*/
mpy-cross/build/*
# This map file is generated here instead of the build folder...
mpy-cross/*.map
Expand Down
16 changes: 16 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
def buildVersion
def boards_to_build = ["WiPy", "LoPy", "SiPy", "GPy", "FiPy", "LoPy4"]
def variants_to_build = [ "PYBYTES" ]
// FIXME: there must be a better way of adding PYGATE to Jenkins, but it evades me :(
def pygate_boards_to_build = ["WiPy", "GPy", "LoPy4"]
def pygate_variants_to_build = [ "PYGATE" ]
def boards_to_test = ["00ec51"]
def open_thread

Expand Down Expand Up @@ -40,6 +43,19 @@ node {
parallel parallelSteps
}
}

for (board in pygate_boards_to_build) {
stage(board) {
def parallelSteps = [:]
for (variant in pygate_variants_to_build) {
board_variant = board + "_" + variant
open_thread = 'off'
parallelSteps[board_variant] = boardBuild(board, variant, open_thread)
}
parallel parallelSteps
}
}

stash includes: '**/*.tar.gz', name: 'binary'
stash includes: 'tests/**', name: 'tests'
stash includes: 'tools/**', name: 'tools'
Expand Down
161 changes: 0 additions & 161 deletions docs/2wipy/general.rst

This file was deleted.

167 changes: 0 additions & 167 deletions docs/2wipy/quickref.rst

This file was deleted.

16 changes: 0 additions & 16 deletions docs/2wipy/tutorial/index.rst

This file was deleted.

Loading

0 comments on commit d574024

Please sign in to comment.