From 1cffec752149ed12abe93f1759a9da32c68bddb3 Mon Sep 17 00:00:00 2001 From: Daniel Nachun Date: Fri, 4 Oct 2024 18:45:30 -0700 Subject: [PATCH] rebuild with run exports (#20) * rebuild with run exports * fix run_exports * fix run_exports --- .azure-pipelines/azure-pipelines-linux.yml | 4 ++++ .travis.yml | 25 ---------------------- README.md | 9 +------- conda-forge.yml | 2 +- recipe/meta.yaml | 13 +---------- 5 files changed, 7 insertions(+), 46 deletions(-) delete mode 100644 .travis.yml diff --git a/.azure-pipelines/azure-pipelines-linux.yml b/.azure-pipelines/azure-pipelines-linux.yml index 875d996..56857c7 100755 --- a/.azure-pipelines/azure-pipelines-linux.yml +++ b/.azure-pipelines/azure-pipelines-linux.yml @@ -12,6 +12,10 @@ jobs: CONFIG: linux_64_ UPLOAD_PACKAGES: 'True' DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 + linux_aarch64_: + CONFIG: linux_aarch64_ + UPLOAD_PACKAGES: 'True' + DOCKER_IMAGE: quay.io/condaforge/linux-anvil-aarch64 timeoutInMinutes: 360 variables: {} diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 18ca8e6..0000000 --- a/.travis.yml +++ /dev/null @@ -1,25 +0,0 @@ -# This file was generated automatically from conda-smithy. To update this configuration, -# update the conda-forge.yml and/or the recipe/meta.yaml. - -language: shell - - - -jobs: - include: - - env: CONFIG=linux_aarch64_ UPLOAD_PACKAGES=True PLATFORM=linux-aarch64 DOCKER_IMAGE=quay.io/condaforge/linux-anvil-aarch64 - os: linux - arch: arm64 - dist: focal - -script: - - export CI=travis - - export GIT_BRANCH="$TRAVIS_BRANCH" - - export flow_run_id="travis_$TRAVIS_JOB_ID" - - export sha="$TRAVIS_COMMIT" - - export remote_url="https://github.com/$TRAVIS_REPO_SLUG" - - export FEEDSTOCK_NAME=$(basename ${TRAVIS_REPO_SLUG}) - - if [[ "${TRAVIS_PULL_REQUEST:-}" == "false" ]]; then export IS_PR_BUILD="False"; else export IS_PR_BUILD="True"; fi - - - - if [[ ${PLATFORM} =~ .*linux.* ]]; then CONDA_FORGE_DOCKER_RUN_ARGS="--network=host --security-opt=seccomp=unconfined" ./.scripts/run_docker_build.sh; fi \ No newline at end of file diff --git a/README.md b/README.md index ba8f923..c5df916 100644 --- a/README.md +++ b/README.md @@ -15,14 +15,7 @@ Current build status ==================== - - - - +
Travis - - linux - -
diff --git a/conda-forge.yml b/conda-forge.yml index 6729c35..1784cfd 100644 --- a/conda-forge.yml +++ b/conda-forge.yml @@ -3,7 +3,7 @@ bot: build_platform: osx_arm64: osx_64 provider: - linux_aarch64: default + linux_aarch64: azure conda_build: error_overlinking: true conda_forge_output_validation: true diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 9b57576..6826fd6 100755 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -10,7 +10,7 @@ source: sha256: 546cb2da9fffbb7e913261344bbf4cf1622721f6c5a67aa77609e976e78b8e89 build: - number: 0 + number: 1 skip: true # [win] requirements: @@ -45,18 +45,8 @@ requirements: - msgpack-c - unibilium run: - - gettext - - libiconv # [osx] - - libmpack-lua - - libtermkey - - libtree-sitter - - libuv - - libvterm - lua-lpeg - luajit-openresty - - luv - - msgpack-c - - unibilium test: commands: @@ -65,7 +55,6 @@ test: about: home: https://neovim.io/ license: Apache-2.0 - license_family: APACHE license_file: LICENSE.txt summary: Ambitious Vim-fork focused on extensibility and agility dev_url: https://github.com/neovim/neovim
Azure