File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -43,25 +43,25 @@ jobs:
4343 if : contains(matrix.os, 'ubuntu')
4444 shell : bash -l {0}
4545 run : |
46- export LFORTRAN_CMAKE_GENERATOR="Unix Makefiles"
47- export WIN=0
48- export MACOS=0
46+ echo " LFORTRAN_CMAKE_GENERATOR=\ "Unix Makefiles\"" >> $GITHUB_ENV
47+ echo " WIN=0" >> $GITHUB_ENV
48+ echo " MACOS=0" >> $GITHUB_ENV
4949
5050 - name : Setup Platform (macOS)
5151 if : contains(matrix.os, 'macos')
5252 shell : bash -l {0}
5353 run : |
54- export LFORTRAN_CMAKE_GENERATOR="Unix Makefiles"
55- export WIN=0
56- export MACOS=1
54+ echo " LFORTRAN_CMAKE_GENERATOR=\ "Unix Makefiles\"" >> $GITHUB_ENV
55+ echo " WIN=0" >> $GITHUB_ENV
56+ echo " MACOS=1" >> $GITHUB_ENV
5757
5858 - name : Setup Platform (Windows)
5959 if : contains(matrix.os, 'windows')
6060 shell : bash -l {0}
6161 run : |
62- export LFORTRAN_CMAKE_GENERATOR="Ninja"
63- export WIN=1
64- export MACOS=0
62+ echo " LFORTRAN_CMAKE_GENERATOR=\ "Ninja\"" >> $GITHUB_ENV
63+ echo " WIN=1" >> $GITHUB_ENV
64+ echo " MACOS=0" >> $GITHUB_ENV
6565
6666 - name : Build and test
6767 shell : bash -l {0}
You can’t perform that action at this time.
0 commit comments