aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.github/ISSUE_TEMPLATE/bug_report.md2
-rw-r--r--.github/workflows/Test.yml2
-rwxr-xr-xscripts/ci-run.sh2
3 files changed, 3 insertions, 3 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md
index 86366a49f..2bee3bc40 100644
--- a/.github/ISSUE_TEMPLATE/bug_report.md
+++ b/.github/ISSUE_TEMPLATE/bug_report.md
@@ -25,7 +25,7 @@ begin
end;
```
-```sh :image: ghdl/ghdl:buster-mcode
+```sh :image: ghdl/ghdl:bullseye-mcode
ghdl -a ent.vhd
ghdl --elab-run ent
```
diff --git a/.github/workflows/Test.yml b/.github/workflows/Test.yml
index 05599aeb8..fe2f576af 100644
--- a/.github/workflows/Test.yml
+++ b/.github/workflows/Test.yml
@@ -131,7 +131,7 @@ jobs:
- name: '🧰 Checkout'
uses: actions/checkout@v2
- - run: TASK=buster+mcode ./scripts/ci-run.sh -c --gplcompat
+ - run: TASK=bullseye+mcode ./scripts/ci-run.sh -c --gplcompat
#
# GNU/Linux
diff --git a/scripts/ci-run.sh b/scripts/ci-run.sh
index 96e2a99bc..368224085 100755
--- a/scripts/ci-run.sh
+++ b/scripts/ci-run.sh
@@ -384,7 +384,7 @@ ci_run () {
tests="sanity"
case "$GHDL_IMAGE_TAG" in
- *ubuntu20*|*buster*)
+ *ubuntu20*|*buster*|*bullseye*)
GHDL_TEST_IMAGE="test:$GHDL_IMAGE_TAG-py"
gstart "[CI] Docker build $GHDL_TEST_IMAGE" "$ANSI_BLUE"
docker build -t "$GHDL_TEST_IMAGE" . -f- <<-EOF