Skip to content

Commit

Permalink
Merge pull request bioconda#61 from bioconda/fetch-linux-aarch64-arti…
Browse files Browse the repository at this point in the history
…facts

include linux-aarch64 artifacts
  • Loading branch information
daler authored Nov 26, 2023
2 parents e75e4dd + 1cc9f17 commit 8526637
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/bioconda-recipes-issue-responder.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/bot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
3 changes: 2 additions & 1 deletion images/bot/src/bioconda_bot/comment.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import logging
import os
import re
import sys

from aiohttp import ClientSession
from yaml import safe_load
Expand Down Expand Up @@ -51,6 +50,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"
Expand Down

0 comments on commit 8526637

Please sign in to comment.