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 testflinger-testenv container #417

Open
wants to merge 7 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61 changes: 61 additions & 0 deletions .github/workflows/build-testflinger-testenv-container.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
name: Build testflinger-testenv container image

on:
push:
branches:
- main
- testflinger-testenv
paths:
- agent/extra/testflinger-testenv/**
- .github/workflows/build-testflinger-testenv-container.yml
workflow_dispatch:

env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}/testflinger-testenv

jobs:
build-testflinger-testenv:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write

strategy:
matrix:
version: [focal, jammy, noble]

steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
config-inline: |
[registry."docker.io"]
mirrors = ["https://github-runner-dockerhub-cache.canonical.com:5000"]

- name: Checkout repository
uses: actions/checkout@v4

- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: ${{ matrix.version }}

- name: Build and push backend Docker image
uses: docker/build-push-action@v6
with:
context: ./agent/extra/testflinger-testenv
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
build-args: |
BASE_IMAGE=ubuntu:${{ matrix.version }}
12 changes: 12 additions & 0 deletions agent/extra/testflinger-testenv/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
ARG BASE_IMAGE=ubuntu:20.04
FROM ${BASE_IMAGE}
ENV container=docker
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y expect build-essential curl jq gettext git openssh-client pipx python3-dev python3-pip python3-psutil python3-requests python3-setuptools python3-venv software-properties-common sudo sshpass virtualenv wget
RUN adduser -u 1000 --disabled-password ubuntu || /bin/true
RUN echo "ubuntu ALL=(root) NOPASSWD:ALL" > /etc/sudoers.d/ubuntu && \
chmod 0440 /etc/sudoers.d/ubuntu
#Avoid sudo rlimit error
RUN echo "Set disable_coredump false" >> /etc/sudo.conf
USER ubuntu
WORKDIR /home/ubuntu
CMD [ "/bin/bash" ]
1 change: 1 addition & 0 deletions agent/extra/testflinger-testenv/README
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This Dockerfile creates a basic test environment for running the test phase of testflinger agents in a Docker container.
Loading