2
0
Fork 0
mirror of https://github.com/friendica/docker synced 2024-05-25 14:56:58 +02:00
docker/.github/workflows/images.yml

53 lines
1.5 KiB
YAML
Raw Normal View History

2020-08-30 22:26:18 +02:00
name: Images
2020-08-18 22:38:18 +02:00
on:
pull_request:
2020-08-30 22:26:18 +02:00
workflow_run:
workflows: ["update.sh"]
branches: [stable]
types:
- completed
2020-08-18 22:38:18 +02:00
defaults:
run:
shell: 'bash -Eeuo pipefail -x {0}'
jobs:
generate-jobs:
name: Generate Jobs
runs-on: ubuntu-latest
outputs:
strategy: ${{ steps.generate-jobs.outputs.strategy }}
steps:
- uses: actions/checkout@v3
- uses: docker-library/bashbrew@v0.1.5
2020-08-18 22:38:18 +02:00
- id: generate-jobs
name: Generate Jobs
run: |
strategy="$(GITHUB_REPOSITORY=friendica "$BASHBREW_SCRIPTS/github-actions/generate.sh")"
strategy="$("$BASHBREW_SCRIPTS/github-actions/munge-i386.sh" -c <<<"$strategy")"
echo "strategy=$strategy" >> "$GITHUB_OUTPUT"
2020-08-18 22:38:18 +02:00
jq . <<<"$strategy" # sanity check / debugging aid
test:
needs: generate-jobs
strategy: ${{ fromJson(needs.generate-jobs.outputs.strategy) }}
name: ${{ matrix.name }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
2020-08-18 22:38:18 +02:00
- name: Prepare Environment
run: ${{ matrix.runs.prepare }}
2020-08-30 22:26:18 +02:00
- name: Run update.sh script
run: ./update.sh
2020-08-18 22:38:18 +02:00
- name: Pull Dependencies
run: ${{ matrix.runs.pull }}
- name: Build ${{ matrix.name }}
run: ${{ matrix.runs.build }}
- name: History ${{ matrix.name }}
run: ${{ matrix.runs.history }}
- name: Test ${{ matrix.name }}
run: ${{ matrix.runs.test }}
- name: '"docker images"'
run: ${{ matrix.runs.images }}