HEAD emacs-29,28,27 #28
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: "HEAD emacs-29,28,27" | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '0 22 * * *' | |
| jobs: | |
| build-29: | |
| runs-on: macos-latest | |
| timeout-minutes: 60 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup to build | |
| run: sh build/setup.sh | |
| - name: Build emacs-29.4 with inline patch | |
| run: sh build/emacs-29.sh -d ${{ github.workspace }} -p inline -n -j4 | |
| - name: Verification | |
| run: ${{ github.workspace }}/emacs-29.4/nextstep/Emacs.app/Contents/MacOS/Emacs --batch --eval="(unless (fboundp 'mac-input-method-mode) (error \"The inline-patch is NOT integrated\"))" | |
| build-28: | |
| runs-on: macos-latest | |
| timeout-minutes: 60 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup to build | |
| run: sh build/setup.sh | |
| - name: Build emacs-28 with inline patch | |
| run: sh build/emacs-28.sh -d ${{ github.workspace }} -p inline -j4 | |
| - name: Verification | |
| run: ${{ github.workspace }}/emacs-28.2/nextstep/Emacs.app/Contents/MacOS/Emacs --batch --eval="(unless (fboundp 'mac-input-method-mode) (error \"The inline-patch is NOT integrated\"))" | |
| build-27: | |
| runs-on: macos-latest | |
| timeout-minutes: 60 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup to build | |
| run: sh build/setup.sh | |
| - name: Build emacs-27 with inline patch | |
| run: sh build/emacs-27.2.sh -d ${{ github.workspace }} -p inline -j4 | |
| - name: Verification | |
| run: ${{ github.workspace }}/emacs-27.2/nextstep/Emacs.app/Contents/MacOS/Emacs --batch --eval="(unless (fboundp 'mac-input-method-mode) (error \"The inline-patch is NOT integrated\"))" |