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