From e6e6f22a0281329d5f9c80d0d44fe055d0c1263b Mon Sep 17 00:00:00 2001 From: Greg Hellings Date: Tue, 16 Apr 2024 12:55:39 -0500 Subject: [PATCH] Remove old, crufty stuff --- .forgejo/workflows/build.yml | 41 ------------------------------------ fedora:39/Containerfile | 6 ------ fedora:latest | 1 - ubuntu:22.04/Containerfile | 7 ------ ubuntu:latest | 1 - 5 files changed, 56 deletions(-) delete mode 100644 .forgejo/workflows/build.yml delete mode 100644 fedora:39/Containerfile delete mode 120000 fedora:latest delete mode 100644 ubuntu:22.04/Containerfile delete mode 120000 ubuntu:latest diff --git a/.forgejo/workflows/build.yml b/.forgejo/workflows/build.yml deleted file mode 100644 index 48c577d..0000000 --- a/.forgejo/workflows/build.yml +++ /dev/null @@ -1,41 +0,0 @@ -on: - push: - pull_request: - release: - types: - - published - - prereleased - workflow_dispatch: - -jobs: - collect: - name: Collect all images - runs-on: podman - outputs: - matrix: ${{ steps.generate-list.ouputs.matrix }} - steps: - - name: Checkout code - uses: actions/checkout@v4 - - - name: Generate list - id: generate-list - shell: bash - run: | - set -ex - echo matrix='$(ls | jq -Rn "[inputs]")' >> "${GITHUB_OUTPUT}" - - build: - name: Build all images - runs-on: podman - needs: collect - matrix: - image: "${{ fromJson( needs.collect.outputs.matrix ) }}" - steps: - - name: Checkout code - uses: actions/checkout@v4 - - - name: Build image - shell: bash - run: | - cd "${{ matrix.image }}" - podman build --rm -t "${{ matrix.image }}" . \ No newline at end of file diff --git a/fedora:39/Containerfile b/fedora:39/Containerfile deleted file mode 100644 index 18a0577..0000000 --- a/fedora:39/Containerfile +++ /dev/null @@ -1,6 +0,0 @@ -FROM fedora:39 - -RUN yum install -y \ - git \ - nodejs \ - jq \ No newline at end of file diff --git a/fedora:latest b/fedora:latest deleted file mode 120000 index d47848d..0000000 --- a/fedora:latest +++ /dev/null @@ -1 +0,0 @@ -fedora:39 \ No newline at end of file diff --git a/ubuntu:22.04/Containerfile b/ubuntu:22.04/Containerfile deleted file mode 100644 index 239a295..0000000 --- a/ubuntu:22.04/Containerfile +++ /dev/null @@ -1,7 +0,0 @@ -FROM ubuntu:22.04 - -RUN apt update && apt -y install \ - git \ - nodejs \ - bash && \ - apt clean all \ No newline at end of file diff --git a/ubuntu:latest b/ubuntu:latest deleted file mode 120000 index cc5854a..0000000 --- a/ubuntu:latest +++ /dev/null @@ -1 +0,0 @@ -ubuntu:22.04/ \ No newline at end of file