Linux aarch64 build #265
Workflow file for this run
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
| name: nightly build | |
| on: | |
| schedule: | |
| - cron: "2 2 * * *" | |
| # Allows you to run this workflow manually from the Actions tab | |
| workflow_dispatch: | |
| pull_request: | |
| # By default GH trigger on types opened, synchronize and reopened. | |
| # see https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#pull_request | |
| # Since we skip the job when the PR is in draft state, we want to force CI | |
| # running when the PR is marked ready_for_review w/o other change. | |
| # see https://github.com/orgs/community/discussions/25722#discussioncomment-3248917 | |
| types: [opened, synchronize, reopened, ready_for_review] | |
| permissions: | |
| contents: write | |
| jobs: | |
| build-linux-aarch64: | |
| env: | |
| ARCH: aarch64 | |
| OS: linux | |
| runs-on: ubuntu-22.04-arm | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| # fetch submodules recusively, to get zig-js-runtime submodules also. | |
| submodules: recursive | |
| - uses: ./.github/actions/install | |
| - name: zig build | |
| run: zig build --release=safe -Doptimize=ReleaseSafe -Dengine=v8 -Dgit_commit=$(git rev-parse --short ${{ github.sha }}) | |
| - name: Rename binary | |
| run: mv zig-out/bin/lightpanda lightpanda-${{ env.ARCH }}-${{ env.OS }} |