Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add bullseye and slim-bullseye to 8.10, 9.0, and 9.2. #78

Closed
wants to merge 2 commits into from

Conversation

Disco-Dave
Copy link

Changes

  • Added Dockerfiles for the following:
    • ghc 8.10 / bullseye
    • ghc 8.10 / slim-bullseye
    • ghc 9.0 / bullseye
    • ghc 9.0 / slim-bullseye
    • ghc 9.2 / bullseye
    • ghc 9.2 / slim-bullseye
  • Modified the debian github workflow to run the additional builds for the build-smoke-test job.

How to test

#!/bin/bash

set -e

(
  cd ./8.10/buster
  docker build .
)

(
  cd ./8.10/slim-buster
  docker build .
)

(
  cd ./9.0/buster
  docker build .
)

(
  cd ./9.0/slim-buster
  docker build .
)

(
  cd ./9.2/buster
  docker build .
)

(
  cd ./9.2/slim-buster
  docker build .
)

(
  cd ./8.10/bullseye
  docker build .
)

(
  cd ./8.10/slim-bullseye
  docker build .
)

(
  cd ./9.0/bullseye
  docker build .
)

(
  cd ./9.0/slim-bullseye
  docker build .
)

(
  cd ./9.2/bullseye
  docker build .
)

(
  cd ./9.2/slim-bullseye
  docker build .
)

echo "DONE"

@AlistairB
Copy link
Contributor

AlistairB commented May 29, 2022

Thanks for PR!

Unfortunately this won't work as GHC does not support bullseye yet. You can see this if you browse the releases https://downloads.haskell.org/~ghc/9.2.3/ (there is no deb11). GHC 9.4 will support bullseye, but it seems this support won't be backported :(

@AlistairB AlistairB closed this May 29, 2022
@AlistairB
Copy link
Contributor

Sorry, also just noticed this is using the deb10 ones. Curious if that will work. Still I think only releases that officially support deb11 should be included.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants