diff --git a/.circleci/Dockerfile b/.circleci/Dockerfile index c488a7926..274edb8e4 100644 --- a/.circleci/Dockerfile +++ b/.circleci/Dockerfile @@ -6,6 +6,7 @@ FROM debian:9 # v1.0.1 - Run as non-root, add unzip, xz-utils # v1.0.2 - Add bzr # v1.0.3 - Verify usign signatures +# v1.0.4 - Add support for Python3 RUN apt update && apt install -y \ build-essential \ @@ -18,6 +19,7 @@ git \ libncurses5-dev \ libssl-dev \ python \ +python3 \ signify-openbsd \ subversion \ time \ diff --git a/.circleci/config.yml b/.circleci/config.yml index 12b64804f..111440797 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -2,7 +2,7 @@ version: 2.0 jobs: build: docker: - - image: docker.io/openwrtorg/packages-cci:v1.0.3 + - image: docker.io/openwrtorg/packages-cci:v1.0.4 environment: - SDK_HOST: "downloads.openwrt.org" - SDK_PATH: "snapshots/targets/ath79/generic" @@ -94,6 +94,11 @@ jobs: working_directory: ~/build_dir command: | tar Jxf ~/sdk/$SDK_FILE --strip=1 + touch .config + make prepare-tmpinfo scripts/config/conf + ./scripts/config/conf --defconfig=.config Config.in + make prereq + rm .config cat > feeds.conf <