diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-02-12 11:12:09 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-02-12 11:12:09 (GMT) |
commit | 7b662b613dffa1e3ec17a36f921d80e0fd5a9e02 (patch) | |
tree | 459213cbb833ef34708972018d4d1858b03ccd80 /.github/workflows | |
parent | 42e3415106fd0092b5a661973d6c5406d8d46db6 (diff) | |
download | tcl-7b662b613dffa1e3ec17a36f921d80e0fd5a9e02.zip tcl-7b662b613dffa1e3ec17a36f921d80e0fd5a9e02.tar.gz tcl-7b662b613dffa1e3ec17a36f921d80e0fd5a9e02.tar.bz2 |
Syntax error in yaml-file
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/mac-build.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/mac-build.yml b/.github/workflows/mac-build.yml index cba8531..81f8882 100644 --- a/.github/workflows/mac-build.yml +++ b/.github/workflows/mac-build.yml @@ -17,7 +17,7 @@ jobs: - name: Build run: make all env: - CFLAGS: -arch x86_64 -arch arm64e + 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 + CFLAGS: "-arch x86_64 -arch arm64e" - name: Run Tests run: | make test |