8000 remove lwip-v1.4 specific code by d-a-v · Pull Request #7436 · esp8266/Arduino · GitHub
[go: up one dir, main page]

Skip to content

remove lwip-v1.4 specific code #7436

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 17 commits into from
Jul 9, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
restore pio CI splitting
  • Loading branch information
d-a-v committed Jul 8, 2020
commit 4adccebf6e50ce3faae718711d42a6faefa0958e
18 changes: 2 additions & 16 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,28 +27,14 @@ jobs:
install:
- sudo apt-get install python3-pip python3-setuptools
env:
- BUILD_PARITY=quart1
- BUILD_PARITY=even
- name: "Platformio (2)"
stage: build
script: $TRAVIS_BUILD_DIR/tests/platformio.sh
install:
- sudo apt-get install python3-pip python3-setuptools
env:
- BUILD_PARITY=quart2
- name: "Platformio (3)"
stage: build
script: $TRAVIS_BUILD_DIR/tests/platformio.sh
install:
- sudo apt-get install python3-pip python3-setuptools
env:
- BUILD_PARITY=quart3
- name: "Platformio (4)"
stage: build
script: $TRAVIS_BUILD_DIR/tests/platformio.sh
install:
- sudo apt-get install python3-pip python3-setuptools
env:
- BUILD_PARITY=quart4
- BUILD_PARITY=odd

- name: "Build (1)"
stage: build
Expand Down
12 changes: 0 additions & 12 deletions tests/platformio.sh
Original file line number Diff line number Diff line change
Expand Up @@ -76,18 +76,6 @@ elif [ "$BUILD_PARITY" = "even" ]; then
elif [ "$BUILD_PARITY" = "odd" ]; then
mod=2
rem=1
elif [ "$BUILD_PARITY" = "quart1" ]; then
mod=4
rem=0
elif [ "$BUILD_PARITY" = "quart2" ]; then
mod=4
rem=1
elif [ "$BUILD_PARITY" = "quart3" ]; then
mod=4
rem=2
elif [ "$BUILD_PARITY" = "quart4" ]; then
mod=4
rem=3
fi

install_platformio
Expand Down
0