Prepare FreeBSD 14.3 migration: fallback to pip for Python 3.11 since… #4
This file contains hidden or 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
| # .github/workflows/freebsd-pkg.yml | |
| name: FreeBSD 14 .pkg | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: [ "main" ] | |
| paths: | |
| - "src/**" | |
| - "packaging/**" | |
| - "scripts/build-and-package-freebsd.sh" | |
| - "ecli.spec" | |
| - "pyproject.toml" | |
| jobs: | |
| build-freebsd-pkg: | |
| runs-on: ubuntu-latest | |
| name: "Build FreeBSD 14.3 .pkg" | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Build in FreeBSD 14.3 VM | |
| uses: vmactions/freebsd-vm@v1 | |
| with: | |
| release: "14.3" | |
| usesh: true | |
| prepare: | | |
| set -eux | |
| env ASSUME_ALWAYS_YES=yes pkg update -f | |
| run: | | |
| set -eux | |
| sh ./scripts/build-and-package-freebsd.sh | |
| - name: Find built .pkg and checksum | |
| id: find_pkg | |
| run: | | |
| set -e | |
| PKG_PATH="$(ls -1 releases/*/ecli-*.pkg | tail -n 1)" | |
| CHECKSUM_PATH="$(ls -1 releases/*/ecli-*.pkg.sha256 | tail -n 1)" | |
| echo "pkg_path=$PKG_PATH" >> $GITHUB_OUTPUT | |
| echo "checksum_path=$CHECKSUM_PATH" >> $GITHUB_OUTPUT | |
| - name: Upload artifact (.pkg and checksum) | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: freebsd-pkg | |
| path: | | |
| ${{ steps.find_pkg.outputs.pkg_path }} | |
| ${{ steps.find_pkg.outputs.checksum_path }} | |
| - name: Commit .pkg and checksum into repository | |
| if: ${{ github.ref == 'refs/heads/main' }} | |
| run: | | |
| set -eux | |
| PKG="${{ steps.find_pkg.outputs.pkg_path }}" | |
| CHECKSUM="${{ steps.find_pkg.outputs.checksum_path }}" | |
| git config user.name "github-actions[bot]" | |
| git config user.email "github-actions[bot]@users.noreply.github.com" | |
| git add "$PKG" "$CHECKSUM" | |
| git commit -m "ci(freebsd): add built pkg artifact $PKG and checksum [skip ci]" || echo "No changes to commit" | |
| git push |