temporary hotfix for GitHub Actions disabling set-env (#2031)

* temporary hotfix for https://github.com/status-im/nimbus-eth2/issues/2009

* also for add-path
This commit is contained in:
tersec 2020-11-17 11:13:51 +01:00 committed by GitHub
parent a6b188bfd4
commit de4e119726
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -118,6 +118,8 @@ jobs:
export CFLAGS="${CFLAGS} -m32"
echo "::set-env name=CFLAGS::$CFLAGS"
fi
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
- name: Install build dependencies (Linux i386)
if: runner.os == 'Linux' && matrix.target.cpu == 'i386'
@ -137,6 +139,8 @@ jobs:
EOF
chmod 755 external/bin/gcc external/bin/g++
echo '::add-path::${{ github.workspace }}/external/bin'
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
- name: Restore MinGW-W64 (Windows) from cache
if: runner.os == 'Windows'
@ -182,6 +186,8 @@ jobs:
run: |
echo '::add-path::${{ github.workspace }}'"/external/mingw-${{ matrix.target.cpu }}/bin"
echo '::add-path::${{ github.workspace }}'"/external/dlls-${{ matrix.target.cpu }}"
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
- name: Install build dependencies (MacOS)
if: runner.os == 'macOS'