-
-
Notifications
You must be signed in to change notification settings - Fork 2
53 lines (52 loc) · 2.04 KB
/
build-previous.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
name: "Test emacs-29,28,27,26"
on:
pull_request:
workflow_dispatch:
schedule:
- cron: '0 10 * * *'
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 with inline patch
run: sh build/emacs-head.sh -b emacs-29 -d ${{ github.workspace }} -p inline
- name: Verification
run: ${{ github.workspace }}/emacs/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 }}
- name: Verification
run: ${{ github.workspace }}/emacs/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.1.sh -d ${{ github.workspace }}
- name: Verification
run: ${{ github.workspace }}/emacs/nextstep/Emacs.app/Contents/MacOS/Emacs --batch --eval="(unless (fboundp 'mac-input-method-mode) (error \"The inline-patch is NOT integrated\"))"
build-26:
runs-on: macos-13
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- name: Setup to build
run: sh build/setup.sh
- name: Build emacs-26.3 with inline patch
run: sh build/emacs-26.3.sh -d ${{ github.workspace }}
- name: Verification
run: ${{ github.workspace }}/emacs_ns/emacs-26.3/nextstep/Emacs.app/Contents/MacOS/Emacs --batch --eval="(unless (fboundp 'mac-input-method-mode) (error \"The inline-patch is NOT integrated\"))"