Remove old, crufty stuff

This commit is contained in:
Greg Hellings
2024-04-16 12:55:39 -05:00
parent e0dd87351d
commit e6e6f22a02
5 changed files with 0 additions and 56 deletions
-41
View File
@@ -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 }}" .
-6
View File
@@ -1,6 +0,0 @@
FROM fedora:39
RUN yum install -y \
git \
nodejs \
jq
-1
View File
@@ -1 +0,0 @@
fedora:39
-7
View File
@@ -1,7 +0,0 @@
FROM ubuntu:22.04
RUN apt update && apt -y install \
git \
nodejs \
bash && \
apt clean all
-1
View File
@@ -1 +0,0 @@
ubuntu:22.04/