-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(ci): split CI jobs by OS to separate workflows
- Loading branch information
1 parent
665681d
commit 15c1c17
Showing
5 changed files
with
146 additions
and
122 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
name: CI Linux | ||
|
||
on: | ||
push: | ||
pull_request: | ||
workflow_dispatch: | ||
# Run weekly | ||
schedule: | ||
- cron: "0 0 * * 0" | ||
|
||
jobs: | ||
ci-linux: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
emacs_version: | ||
- 28.2 | ||
- 29.1 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: purcell/setup-emacs@master | ||
with: | ||
version: ${{ matrix.emacs_version }} | ||
# Install dependencies for vterm... | ||
- name: Install dependency needed for some Emacs packages (Ubuntu) | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y libtool-bin cmake tree | ||
- name: Show Emacs version | ||
run: | | ||
EMACS_VERSION=$(emacs --version) | ||
echo $EMACS_VERSION | ||
echo "EMACS_VERSION=$(echo $EMACS_VERSION | head -n1 | sed -E 's/GNU Emacs ([^ ]*).*/\1/')" >> "$GITHUB_ENV" | ||
- name: Running Emacs | ||
run: | | ||
ln -s "$(pwd)" "../.emacs.d" | ||
echo "Enabling all MinEmacs modules" | ||
echo "Running Emacs with MinEmacs configuration" | ||
MINEMACSDIR=.github/workflows/scripts/minemacs-all.d/ | ||
make ci | tee /tmp/minemacs-output | ||
EMACS_EXIT_CODE=$? | ||
if [[ $EMACS_EXIT_CODE == 0 ]]; then | ||
echo "Emacs exited successfully" | ||
else | ||
echo "Emacs exited with non-zero code ${EMACS_EXIT_CODE}" | ||
fi | ||
WARNINGS=$(cat /tmp/minemacs-output | grep Warning | sed -E 's/^(.*\.el): Warning/- \*\*\1\*\*/' | sed -E 's/^Warning ([^:]*)/- \*\*\1\*\*/') | ||
LOAD_ERRORS=$(cat /tmp/minemacs-output | grep -E "(Cannot (open )?load)|(Not found)" | sed 's/^/- /') | ||
ELISP_ERRORS=$(cat /tmp/minemacs-output | awk -F': ' '/^Debugger entered--Lisp error: / { print "- **" $1 "**: `" $2 "`"; print "```elisp"; while (getline && match($0, "^[[:space:]]{2}")) print $0; print "```"}' ) | ||
echo -e "# MinEmacs report ($EMACS_VERSION)\n" >> $GITHUB_STEP_SUMMARY | ||
if [[ ! -z "$LOAD_ERRORS" ]]; then | ||
echo -e "## Loading errors\n$LOAD_ERRORS\n" >> $GITHUB_STEP_SUMMARY | ||
fi | ||
if [[ ! -z "$ELISP_ERRORS" ]]; then | ||
echo -e "## Emacs Lisp errors\n$ELISP_ERRORS\n" >> $GITHUB_STEP_SUMMARY | ||
fi | ||
if [[ ! -z "$WARNINGS" ]]; then | ||
echo -e "## Warnings\n$WARNINGS" >> $GITHUB_STEP_SUMMARY | ||
fi | ||
if [[ ! -z "$LOAD_ERRORS" ]] || [[ ! -z "$ELISP_ERRORS" ]] || [[ ! -z "$EMACS_EXIT_CODE" ]]; then exit 1; fi | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
name: CI MacOS | ||
|
||
on: | ||
push: | ||
pull_request: | ||
workflow_dispatch: | ||
# Run weekly | ||
schedule: | ||
- cron: "0 0 * * 0" | ||
|
||
jobs: | ||
ci-macos: | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Setup Emacs (MacOS) | ||
run: | | ||
brew install emacs | ||
- name: Show Emacs version | ||
run: | | ||
EMACS_VERSION=$(emacs --version) | ||
echo $EMACS_VERSION | ||
echo "EMACS_VERSION=$(echo $EMACS_VERSION | head -n1 | sed -E 's/GNU Emacs ([^ ]*).*/\1/')" >> "$GITHUB_ENV" | ||
- name: Running Emacs | ||
run: | | ||
ln -s "$(pwd)" "../.emacs.d" | ||
echo "Enabling all MinEmacs modules" | ||
echo "Running Emacs with MinEmacs configuration" | ||
MINEMACSDIR=.github/workflows/scripts/minemacs-all.d/ | ||
make ci | tee /tmp/minemacs-output | ||
EMACS_EXIT_CODE=$? | ||
if [[ -z "$EMACS_EXIT_CODE" ]]; then | ||
echo "Emacs exited successfully" | ||
else | ||
echo "Emacs exited with non-zero code ${EMACS_EXIT_CODE}" | ||
fi | ||
WARNINGS=$(cat /tmp/minemacs-output | grep Warning | sed -E 's/^(.*\.el): Warning/- \*\*\1\*\*/' | sed -E 's/^Warning ([^:]*)/- \*\*\1\*\*/') | ||
LOAD_ERRORS=$(cat /tmp/minemacs-output | grep -E "(Cannot (open )?load)|(Not found)" | sed 's/^/- /') | ||
ELISP_ERRORS=$(cat /tmp/minemacs-output | awk -F': ' '/^Debugger entered--Lisp error: / { print "- **" $1 "**: `" $2 "`"; print "```elisp"; while (getline && match($0, "^[[:space:]]{2}")) print $0; print "```"}' ) | ||
echo -e "# MinEmacs report ($EMACS_VERSION)\n" >> $GITHUB_STEP_SUMMARY | ||
if [[ ! -z "$LOAD_ERRORS" ]]; then | ||
echo -e "## Loading errors\n$LOAD_ERRORS\n" >> $GITHUB_STEP_SUMMARY | ||
fi | ||
if [[ ! -z "$ELISP_ERRORS" ]]; then | ||
echo -e "## Emacs Lisp errors\n$ELISP_ERRORS\n" >> $GITHUB_STEP_SUMMARY | ||
fi | ||
if [[ ! -z "$WARNINGS" ]]; then | ||
echo -e "## Warnings\n$WARNINGS" >> $GITHUB_STEP_SUMMARY | ||
fi | ||
if [[ ! -z "$LOAD_ERRORS" ]] || [[ ! -z "$ELISP_ERRORS" ]] || [[ ! -z "$EMACS_EXIT_CODE" ]]; then exit 1; fi |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: CI Windows | ||
|
||
on: | ||
push: | ||
pull_request: | ||
workflow_dispatch: | ||
# Run weekly | ||
schedule: | ||
- cron: "0 0 * * 0" | ||
|
||
jobs: | ||
ci-windows: | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Setup Emacs (Windows) | ||
run: | | ||
choco install emacs | ||
- name: Show Emacs version | ||
run: | | ||
emacs --version | ||
- name: Running Emacs | ||
run: | | ||
$env:HOME = "D:\a\minemacs\" | ||
$env:MINEMACSDIR = "D:\a\minemacs\.github\workflows\scripts\minemacs-all.d\" | ||
emacs --no-window-system --batch --script .github\workflows\scripts\ci-init.el |
This file was deleted.
Oops, something went wrong.
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