From d7370555a6c5d77c008908c48a474959f258ab18 Mon Sep 17 00:00:00 2001 From: Ryan Dale Date: Sun, 26 Nov 2023 09:40:29 -0500 Subject: [PATCH 1/3] include linux-aarch64 artifacts --- images/bot/src/bioconda_bot/comment.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/images/bot/src/bioconda_bot/comment.py b/images/bot/src/bioconda_bot/comment.py index 75d23d50..75e055e5 100644 --- a/images/bot/src/bioconda_bot/comment.py +++ b/images/bot/src/bioconda_bot/comment.py @@ -51,6 +51,8 @@ async def make_artifact_comment(session: ClientSession, pr: int, sha: str) -> No comment += "noarch |" elif subdir == "linux-64": comment += "linux-64 |" + elif subdir == "linux-aarch64": + comment += "linux-aarch64 |" else: comment += "osx-64 |" comment += f" {packageName} | [{archdir}]({URL})\n" From 861c4711c9833e87913275c640bea34f6fb5d9b8 Mon Sep 17 00:00:00 2001 From: Ryan Dale Date: Sun, 26 Nov 2023 10:13:18 -0500 Subject: [PATCH 2/3] update gh actions to use 22.04 --- .github/workflows/bioconda-recipes-issue-responder.yaml | 2 +- .github/workflows/bot.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/bioconda-recipes-issue-responder.yaml b/.github/workflows/bioconda-recipes-issue-responder.yaml index 182df077..7218a752 100644 --- a/.github/workflows/bioconda-recipes-issue-responder.yaml +++ b/.github/workflows/bioconda-recipes-issue-responder.yaml @@ -14,7 +14,7 @@ on: jobs: build: name: Build & Push - runs-on: ubuntu-18.04 + runs-on: ubuntu-22.04 env: IMAGE_NAME: bioconda-recipes-issue-responder IMAGE_VERSION: '1.1.1' diff --git a/.github/workflows/bot.yaml b/.github/workflows/bot.yaml index 2ce17058..3b6371db 100644 --- a/.github/workflows/bot.yaml +++ b/.github/workflows/bot.yaml @@ -23,7 +23,7 @@ jobs: packages: "anaconda-client skopeo" - tag: update packages: "git openssh" - runs-on: ubuntu-18.04 + runs-on: ubuntu-22.04 env: IMAGE_NAME: bot IMAGE_VERSION: '1.1.23' From 1cc9f1702e81a93917f5bfc155cdd3ce3ce0ea7b Mon Sep 17 00:00:00 2001 From: Ryan Dale Date: Sun, 26 Nov 2023 10:32:32 -0500 Subject: [PATCH 3/3] rm unused sys (and retrigger PR builds) --- images/bot/src/bioconda_bot/comment.py | 1 - 1 file changed, 1 deletion(-) diff --git a/images/bot/src/bioconda_bot/comment.py b/images/bot/src/bioconda_bot/comment.py index 75e055e5..eb9e13fb 100644 --- a/images/bot/src/bioconda_bot/comment.py +++ b/images/bot/src/bioconda_bot/comment.py @@ -1,7 +1,6 @@ import logging import os import re -import sys from aiohttp import ClientSession from yaml import safe_load