Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/actions/set-up/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ runs:
release: false
install: >
texinfo
mingw-w64-x86_64-emacs
- name: Set up Ubuntu worker
if: runner.os == 'Linux'
shell: bash
Expand All @@ -106,7 +107,7 @@ runs:
if: runner.os == 'macOS'
shell: bash
run: |
brew update && brew install texinfo
brew update && brew install texinfo emacs
# Detect Xcode command-line tools on macOS to work around
# https://github.com/bazelbuild/bazel/issues/14970.
cov="$(xcrun --find llvm-cov)"
Expand All @@ -126,7 +127,10 @@ runs:
Add-Content
-Verbose
-LiteralPath $Env:GITHUB_ENV
-Value 'BAZEL_SH=${{steps.msys2.outputs.msys2-location}}\usr\bin\bash.exe'
-Value (
'BAZEL_SH=${{steps.msys2.outputs.msys2-location}}\usr\bin\bash.exe',
'EMACS=${{steps.msys2.outputs.msys2-location}}\mingw64\bin\emacs.exe'
)
- name: Override Bazel version
if: inputs.bazel-version != 'default'
shell: pwsh
Expand Down
4 changes: 3 additions & 1 deletion check.ps1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env pwsh

# Copyright 2021-2025 Google LLC
# Copyright 2021-2026 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -57,6 +57,8 @@ foreach ($version in $versions) {
Run-Tests "--extra_toolchains=//elisp:emacs_${version}_toolchain"
}

Run-Tests '--extra_toolchains=//elisp:local_toolchain'

Run-Bazel 'mod' 'graph' > $null

Join-Path -Path examples -ChildPath ext | Set-Location
Expand Down
Loading