File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -82,12 +82,12 @@ jobs:
8282 # ENABLE_PATH_CHECK=0: https://github.com/actions/virtual-environments/issues/267
8383 - name : Set configure flags (head)
8484 run : |
85- echo "::set-env name= cppflags:: -DENABLE_PATH_CHECK=0"
85+ echo "cppflags= -DENABLE_PATH_CHECK=0" >> $GITHUB_ENV
8686 if : matrix.name == 'head'
8787 - name : Set configure flags (debug)
8888 run : |
89- echo "::set-env name= cppflags:: -DENABLE_PATH_CHECK=0 -DRUBY_DEBUG=1"
90- echo "::set-env name= optflags:: -O3 -fno-inline"
89+ echo "cppflags= -DENABLE_PATH_CHECK=0 -DRUBY_DEBUG=1" >> $GITHUB_ENV
90+ echo "optflags= -O3 -fno-inline" >> $GITHUB_ENV
9191 if : matrix.name == 'debug'
9292
9393 # Build
@@ -108,7 +108,7 @@ jobs:
108108 - run : make test-spec MSPECOPT=-j
109109 - run : make test-all TESTS="-j4"
110110
111- - run : echo "::add-path:: $HOME/.rubies/ruby-${{ matrix.name }}/bin"
111+ - run : echo "$HOME/.rubies/ruby-${{ matrix.name }}/bin" >> $GITHUB_PATH
112112 - uses : actions/checkout@v2
113113 with :
114114 path : test_files
You can’t perform that action at this time.
0 commit comments