From 9c62aadac02f98ffac339178cebf2d34bb3c9300 Mon Sep 17 00:00:00 2001 From: Pavel Zwerschke Date: Fri, 23 Feb 2024 15:20:25 +0100 Subject: [PATCH 1/4] Set RATTLER_BUILD_COLOR to true --- action.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index aed848c..61e53f3 100644 --- a/action.yml +++ b/action.yml @@ -64,9 +64,10 @@ runs: shell: bash if: ${{ runner.os != 'Windows' }} run: | - rattler-build build --recipe "${{ inputs.recipe-path }}" ${{ inputs.build-args }} + rattler-build build --recipe "${{ inputs.recipe-path }}" --color always ${{ inputs.build-args }} env: RATTLER_BUILD_ENABLE_GITHUB_INTEGRATION: 'true' + RATTLER_BUILD_COLOR: 'true' - name: Build conda package (Windows) shell: powershell if: ${{ runner.os == 'Windows' }} @@ -74,6 +75,7 @@ runs: rattler-build build --recipe "${{ inputs.recipe-path }}" ${{ inputs.build-args }} env: RATTLER_BUILD_ENABLE_GITHUB_INTEGRATION: 'true' + RATTLER_BUILD_COLOR: 'true' - name: Upload build artifacts uses: actions/upload-artifact@v4 if: ${{ inputs.upload-artifact == 'true' }} From 1da7e96fcee082697a8aee1f540735fd749f9ff0 Mon Sep 17 00:00:00 2001 From: Pavel Zwerschke Date: Fri, 23 Feb 2024 15:20:59 +0100 Subject: [PATCH 2/4] Update action.yml --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 61e53f3..eb616bd 100644 --- a/action.yml +++ b/action.yml @@ -67,7 +67,7 @@ runs: rattler-build build --recipe "${{ inputs.recipe-path }}" --color always ${{ inputs.build-args }} env: RATTLER_BUILD_ENABLE_GITHUB_INTEGRATION: 'true' - RATTLER_BUILD_COLOR: 'true' + RATTLER_BUILD_COLOR: 'always' - name: Build conda package (Windows) shell: powershell if: ${{ runner.os == 'Windows' }} @@ -75,7 +75,7 @@ runs: rattler-build build --recipe "${{ inputs.recipe-path }}" ${{ inputs.build-args }} env: RATTLER_BUILD_ENABLE_GITHUB_INTEGRATION: 'true' - RATTLER_BUILD_COLOR: 'true' + RATTLER_BUILD_COLOR: 'always' - name: Upload build artifacts uses: actions/upload-artifact@v4 if: ${{ inputs.upload-artifact == 'true' }} From 46838753d58f7241005866552ab49cefa5c8d0ce Mon Sep 17 00:00:00 2001 From: Pavel Zwerschke Date: Fri, 23 Feb 2024 15:23:00 +0100 Subject: [PATCH 3/4] Update action.yml --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index eb616bd..c11e330 100644 --- a/action.yml +++ b/action.yml @@ -64,7 +64,7 @@ runs: shell: bash if: ${{ runner.os != 'Windows' }} run: | - rattler-build build --recipe "${{ inputs.recipe-path }}" --color always ${{ inputs.build-args }} + rattler-build build --recipe "${{ inputs.recipe-path }}" ${{ inputs.build-args }} env: RATTLER_BUILD_ENABLE_GITHUB_INTEGRATION: 'true' RATTLER_BUILD_COLOR: 'always' From 164e9111501a8a85fca1fe5703edbd99b54f9cff Mon Sep 17 00:00:00 2001 From: Pavel Zwerschke Date: Mon, 26 Feb 2024 15:53:19 +0100 Subject: [PATCH 4/4] Update action.yml --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index c11e330..e64b56d 100644 --- a/action.yml +++ b/action.yml @@ -8,7 +8,7 @@ inputs: rattler-build-version: description: Version of rattler-build to use required: false - default: 'v0.11.0' + default: 'v0.12.0' recipe-path: description: Path to the recipe.yaml file required: true