mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-03-26 16:51:46 -07:00
Third attempt to use environment variables to select the compiler.
This commit is contained in:
parent
cd4f0c9934
commit
32dac66d58
1 changed files with 5 additions and 1 deletions
6
mps/.github/workflows/build-and-test.yml
vendored
6
mps/.github/workflows/build-and-test.yml
vendored
|
|
@ -26,13 +26,17 @@ jobs:
|
|||
env:
|
||||
- CC: gcc
|
||||
- CC: clang
|
||||
exclude:
|
||||
- os: macos-latest
|
||||
env:
|
||||
- CC: gcc
|
||||
|
||||
runs-on: ${{ matrix.os }}
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: configure
|
||||
run: ./configure
|
||||
run: CC=${{ matrix.env.cc }} ./configure
|
||||
- name: make
|
||||
run: make
|
||||
- name: make test
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue