2022-10-31 21:00:24 +03:00
|
|
|
name: ci
|
|
|
|
on: pull_request
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
get-diff:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
outputs:
|
|
|
|
diff: ${{ steps.diff.outputs.diff }}
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: technote-space/get-diff-action@v6
|
2023-02-11 14:06:35 +03:00
|
|
|
id: get-diff
|
2022-10-31 21:00:24 +03:00
|
|
|
with:
|
|
|
|
PATTERNS: projects/**/package.yml
|
2023-02-11 14:06:35 +03:00
|
|
|
- id: diff
|
|
|
|
run: |
|
2022-12-31 17:50:18 +03:00
|
|
|
for x in ${{ steps.get-diff.outputs.diff }}; do
|
|
|
|
y=$(echo $x | sed 's#projects/\(.*\)/package.yml#\1#')
|
|
|
|
RESULT="$RESULT $y"
|
|
|
|
done
|
2023-02-11 14:06:35 +03:00
|
|
|
echo "diff=$RESULT" >> $GITHUB_OUTPUT
|
2023-02-24 23:44:35 +03:00
|
|
|
ci:
|
2023-02-04 03:52:04 +03:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
platform:
|
|
|
|
- darwin+x86-64
|
|
|
|
- linux+x86-64
|
|
|
|
- darwin+aarch64
|
|
|
|
- linux+aarch64
|
2022-10-31 21:00:24 +03:00
|
|
|
needs: [get-diff]
|
|
|
|
uses: teaxyz/pantry.core/.github/workflows/build.yml@main
|
|
|
|
with:
|
|
|
|
projects: ${{ needs.get-diff.outputs.diff || 'zlib.net' }}
|
2023-02-04 03:52:04 +03:00
|
|
|
platform: ${{ matrix.platform }}
|
2022-10-31 21:00:24 +03:00
|
|
|
secrets: inherit
|