Skip to content

Commit 2095c78

Browse files
committed
Revert "Use SourceForge CDN for CI"
This reverts commit 8cd2066.
1 parent 8cd2066 commit 2095c78

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

platform.py

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -12,24 +12,11 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
from os import getenv
16-
1715
from platformio.managers.platform import PlatformBase
1816

1917

2018
class Espressif8266Platform(PlatformBase):
2119

22-
@property
23-
def package_repositories(self):
24-
repositories = super(
25-
Espressif8266Platform, self).package_repositories or []
26-
if getenv("CI", "false").lower() == "true":
27-
repositories = [
28-
"https://sourceforge.net/projects/platformio-storage/"
29-
"files/packages/manifest.json"
30-
] + repositories
31-
return repositories
32-
3320
def configure_default_packages(self, variables, targets):
3421
if not variables.get("pioframework"):
3522
self.packages['sdk-esp8266']['optional'] = False

0 commit comments

Comments
 (0)