ci.yml 489 B

1234567891011121314151617181920212223
  1. name: CI
  2. on:
  3. - pull_request
  4. - push
  5. jobs:
  6. test:
  7. runs-on: ubuntu-latest
  8. strategy:
  9. matrix:
  10. branch:
  11. - latest-stable
  12. - edge
  13. steps:
  14. - uses: actions/checkout@v2
  15. - name: Build rootfs tarball
  16. run: |
  17. sudo ./alpine-make-rootfs \
  18. --branch ${{ matrix.branch }} \
  19. --packages 'ruby sqlite' \
  20. --script-chroot \
  21. example-$(date +%Y%m%d).tar.gz -- ./example/install.sh