forked from docker-library/ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
53 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
name: GitHub CI | ||
|
||
on: | ||
pull_request: | ||
push: | ||
schedule: | ||
- cron: 0 0 * * 0 | ||
|
||
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@v1 | ||
- id: generate-jobs | ||
name: Generate Jobs | ||
run: | | ||
git clone --depth 1 https://github.com/docker-library/bashbrew.git -b master ~/bashbrew | ||
strategy="$(~/bashbrew/scripts/github-actions/generate.sh)" | ||
jq . <<<"$strategy" # sanity check / debugging aid | ||
echo "::set-output name=strategy::$strategy" | ||
test: | ||
needs: generate-jobs | ||
strategy: ${{ fromJson(needs.generate-jobs.outputs.strategy) }} | ||
name: ${{ matrix.name }} | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: Prepare Environment | ||
run: ${{ matrix.runs.prepare }} | ||
- 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 }} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters