fix: env
This commit is contained in:
parent
c37dcd60d8
commit
79f14911a1
7
.github/workflows/release.yml
vendored
7
.github/workflows/release.yml
vendored
@ -33,9 +33,6 @@ jobs:
|
|||||||
- name: Setup Go Environment
|
- name: Setup Go Environment
|
||||||
uses: actions/setup-go@master
|
uses: actions/setup-go@master
|
||||||
|
|
||||||
- name: Download Go Modules
|
|
||||||
run: go mod tidy
|
|
||||||
|
|
||||||
- name: Cache Downloaded Modules
|
- name: Cache Downloaded Modules
|
||||||
uses: actions/cache@master
|
uses: actions/cache@master
|
||||||
with:
|
with:
|
||||||
@ -48,7 +45,9 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
NDK_TOOLCHAIN: ${{ steps.setup-ndk.outputs.ndk-path }}
|
NDK_TOOLCHAIN: ${{ steps.setup-ndk.outputs.ndk-path }}
|
||||||
BUILD_MACHINE: linux
|
BUILD_MACHINE: linux
|
||||||
run: make -e
|
run: |
|
||||||
|
echo NDK path is $NDK_TOOLCHAIN
|
||||||
|
make -e
|
||||||
|
|
||||||
- name: Upload Binaries to Release
|
- name: Upload Binaries to Release
|
||||||
uses: svenstaro/upload-release-action@v2
|
uses: svenstaro/upload-release-action@v2
|
||||||
|
7
.github/workflows/test.yml
vendored
7
.github/workflows/test.yml
vendored
@ -25,9 +25,6 @@ jobs:
|
|||||||
- name: Setup Go Environment
|
- name: Setup Go Environment
|
||||||
uses: actions/setup-go@master
|
uses: actions/setup-go@master
|
||||||
|
|
||||||
- name: Download Go Modules
|
|
||||||
run: go mod tidy
|
|
||||||
|
|
||||||
- name: Cache Downloaded Modules
|
- name: Cache Downloaded Modules
|
||||||
uses: actions/cache@master
|
uses: actions/cache@master
|
||||||
with:
|
with:
|
||||||
@ -40,4 +37,6 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
NDK_TOOLCHAIN: ${{ steps.setup-ndk.outputs.ndk-path }}
|
NDK_TOOLCHAIN: ${{ steps.setup-ndk.outputs.ndk-path }}
|
||||||
BUILD_MACHINE: linux
|
BUILD_MACHINE: linux
|
||||||
run: make -e runtest
|
run: |
|
||||||
|
echo NDK path is $NDK_TOOLCHAIN
|
||||||
|
make -e runtest
|
||||||
|
Loading…
x
Reference in New Issue
Block a user