summaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authorculler <culler>2021-02-12 14:57:10 (GMT)
committerculler <culler>2021-02-12 14:57:10 (GMT)
commit21d34a19569a60fcfb184212d11b6c0174799ca5 (patch)
tree98a9bd4fa0c23b15f27c363a57379cd26727b92d /.github/workflows
parent7b662b613dffa1e3ec17a36f921d80e0fd5a9e02 (diff)
downloadtcl-21d34a19569a60fcfb184212d11b6c0174799ca5.zip
tcl-21d34a19569a60fcfb184212d11b6c0174799ca5.tar.gz
tcl-21d34a19569a60fcfb184212d11b6c0174799ca5.tar.bz2
The syntax error was caused by Aquamacs inserting tabs into the YAML file.
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/mac-build.yml10
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/mac-build.yml b/.github/workflows/mac-build.yml
index 81f8882..bf3c420 100644
--- a/.github/workflows/mac-build.yml
+++ b/.github/workflows/mac-build.yml
@@ -16,8 +16,8 @@ jobs:
working-directory: generic
- name: Build
run: make all
- env:
- CFLAGS: "-arch x86_64 -arch arm64e"
+ env:
+ CFLAGS: -arch x86_64 -arch arm64e
- name: Run Tests
run: make test styles=develop
env:
@@ -48,13 +48,13 @@ jobs:
# Note that macOS is always a 64 bit platform
run: ./configure --enable-64bit --enable-dtrace --enable-framework ${CFGOPT} "--prefix=$HOME/install" || (cat config.log && exit 1)
env:
- CFLAGS: "-arch x86_64 -arch arm64e"
+ CFLAGS: -arch x86_64 -arch arm64e
CFGOPT: ${{ matrix.cfgopt }}
- name: Build
run: |
make all tcltest
- env:
- CFLAGS: "-arch x86_64 -arch arm64e"
+ env:
+ CFLAGS: -arch x86_64 -arch arm64e
- name: Run Tests
run: |
make test