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

Debian arts image? #1

Open
davidebangelista opened this issue Feb 26, 2023 · 2 comments
Open

Debian arts image? #1

davidebangelista opened this issue Feb 26, 2023 · 2 comments

Comments

@davidebangelista
Copy link

Hello,

From the included files below, I see that ubuntu is used.

If possible, would it be possible to include debian (Bookworm) as an art image?

I would happly create one and support this project!

@ruanformigoni
Copy link
Owner

ruanformigoni commented Feb 26, 2023

Hey there! Sure thing, feel free to open a PR. I think the only change required for that is in .gitlab-ci:

package-bookworm:
  stage: package
  when: manual
  before_script:
    - apt update && apt -y upgrade
    - apt install -y git wget curl zstd debootstrap e2fsprogs proot fuse2fs xz-utils rsync
    - echo JOB_ID_BUILD_BS_FOCAL=$CI_JOB_ID > build.env
  script:
    # Set dist
    - dist="bookworm"
    # Build
    - ./src/scripts/_build.sh debootstrap "$dist"
    # Set env vars
    - echo "FOCAL_TARBALL=${dist}.tar.xz" >> build.env
  needs:
    - job: build-elf
      artifacts: true
    - job: build-fuse2fs
      artifacts: true
  artifacts:
    paths:
      - ./dist
    reports:
      dotenv: build.env

If you run into any problems let me know, creating more debian-based images is in my plans.

@davidebangelista
Copy link
Author

Ok! Sure thing!

I will contact you if I'm stuck. Thanks.

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

No branches or pull requests

2 participants