Update idf_build_apps

This commit is contained in:
xysun 2024-01-12 19:44:15 +08:00
parent a59872171e
commit 11cfe7a1b1
2 changed files with 7 additions and 3 deletions

View File

@ -23,7 +23,7 @@ before_script:
- echo -e "Host gitlab.espressif.cn\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config
- git --version
- git submodule update --init --recursive --force
- pip install idf_build_apps
- pip install idf_build_apps==1.1.4
.if-protected: &if-protected
if: '($CI_COMMIT_REF_NAME == "master" || $CI_COMMIT_BRANCH =~ /^release\/v/ || $CI_COMMIT_TAG =~ /^v\d+\.\d+(\.\d+)?($|-)/)'
@ -308,4 +308,4 @@ push_to_github:
- echo -e "Host github.com\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config
- git remote remove github &>/dev/null || true
- git remote add github git@github.com:espressif/esp-sr.git
- git push github "${CI_COMMIT_SHA}:refs/heads/${CI_COMMIT_REF_NAME}"
- git push github "${CI_COMMIT_SHA}:refs/heads/${CI_COMMIT_REF_NAME}"

View File

@ -13,7 +13,11 @@ import re
from pathlib import Path
from typing import List
from idf_build_apps import LOGGER, App, build_apps, find_apps, setup_logging
import logging
from idf_build_apps import App, build_apps, find_apps, setup_logging
LOGGER = logging.getLogger('idf_build_apps')
PROJECT_ROOT = Path(__file__).parent.parent.absolute()
print(PROJECT_ROOT)