Remove old, crufty stuff
This commit is contained in:
@@ -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 }}" .
|
||||
@@ -1,6 +0,0 @@
|
||||
FROM fedora:39
|
||||
|
||||
RUN yum install -y \
|
||||
git \
|
||||
nodejs \
|
||||
jq
|
||||
@@ -1 +0,0 @@
|
||||
fedora:39
|
||||
@@ -1,7 +0,0 @@
|
||||
FROM ubuntu:22.04
|
||||
|
||||
RUN apt update && apt -y install \
|
||||
git \
|
||||
nodejs \
|
||||
bash && \
|
||||
apt clean all
|
||||
@@ -1 +0,0 @@
|
||||
ubuntu:22.04/
|
||||
Reference in New Issue
Block a user