Emacs 30 #913
This file contains 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: Emacs 30 | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- "Formula/emacs-plus@30.rb" | |
- "patches/emacs-30/**" | |
- "Library/**" | |
- ".github/workflows/emacs-30.yml" | |
pull_request: | |
paths: | |
- "Formula/emacs-plus@30.rb" | |
- "patches/emacs-30/**" | |
- "Library/**" | |
- ".github/workflows/emacs-30.yml" | |
schedule: | |
- cron: "30 2 * * *" | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [macos-13] | |
build_opts: | |
- "" | |
- "--with-xwidgets" | |
- "--with-native-comp" | |
- "--with-x11" | |
env: | |
HOMEBREW_EMACS_PLUS_MODE: local | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install xquartz | |
if: contains(matrix.build_opts, '--with-x11') | |
run: brew install --cask xquartz | |
- name: Build emacs-plus@30 ${{ matrix.build_opts }} | |
run: brew install ./Formula/emacs-plus@30.rb ${{ matrix.build_opts }} --verbose | |
- name: Test installation | |
run: $(brew --prefix)/bin/emacs --batch --eval='(print (+ 2 2))' | |
- name: Pack up build logs | |
if: ${{ always() }} | |
run: | | |
BUILD_OPTS=$(echo "${{ matrix.build_opts }}" | sed 's/ //') | |
echo "build_opts=$BUILD_OPTS" >> "$GITHUB_ENV" | |
RUNNER_OS=$(echo "${{ matrix.os }}" | sed 's/ //') | |
echo "runner_os=$RUNNER_OS" >> "$GITHUB_ENV" | |
tar -C ~/Library/Logs/Homebrew/emacs-plus@30/ -czvf ~/Library/Logs/Homebrew/emacs-plus@30-$RUNNER_OS$BUILD_OPTS.tar.gz . | |
- name: Upload logs | |
if: ${{ always() }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: emacs-plus@30-${{ env.runner_os }}${{ env.build_opts }}.tar.gz | |
path: | | |
~/Library/Logs/Homebrew/emacs-plus@30-${{ env.runner_os }}${{ env.build_opts }}.tar.gz |