Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
ClemensElflein committed Oct 4, 2024
1 parent 745a084 commit cf615c7
Show file tree
Hide file tree
Showing 5 changed files with 68 additions and 3 deletions.
48 changes: 45 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,22 @@ on:
- 'feature/*'

jobs:
CI:
pre-commit:
name: "Run Pre-Commit Checks"
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- uses: actions/setup-python@v3
uses: actions/checkout@v4
- uses: actions/setup-python@v5
- uses: pre-commit/[email protected]
artifacts:
name: "Build Artifacts"
needs: pre-commit
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- uses: actions/setup-python@v5
- uses: pre-commit/[email protected]
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
Expand All @@ -36,3 +46,35 @@ jobs:
with:
name: bootloader
path: artifacts/
build-host-docker:
name: "Build Host Software Docker Image"
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./host-software
steps:
- uses: actions/checkout@v4
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3
- name: Login to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/${{ github.repository }}
- name: Build and push
id: build-and-push
uses: docker/build-push-action@v5
with:
context: host-software
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
push: true
cache-from: type=gha
cache-to: type=gha,mode=max
4 changes: 4 additions & 0 deletions host-software/.dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.idea
.venv
Dockerfile
out
3 changes: 3 additions & 0 deletions host-software/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.venv/
.idea/
out/
15 changes: 15 additions & 0 deletions host-software/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Use the official Python image from the Docker Hub
FROM python:3.10

# Set the working directory for the container
WORKDIR /usr/src/app

# Copy the current directory contents into the container at /usr/src/app
COPY . .

# Install any dependencies specified in requirements.txt
RUN pip install --no-cache-dir -r requirements.txt

# Command to run your Python script along with the specified arguments
WORKDIR /workdir
ENTRYPOINT ["python", "main.py"]
1 change: 1 addition & 0 deletions host-software/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
tqdm==4.66.5

0 comments on commit cf615c7

Please sign in to comment.