chore: support go 1.11, 1.12 and windows 386 release
This commit is contained in:
parent
4f80bd0ca7
commit
3dc564680d
|
@ -7,7 +7,7 @@ jobs:
|
||||||
runs-on: macos-latest
|
runs-on: macos-latest
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
goVer: [1.13, 1.14]
|
goVer: [1.11, 1.12, 1.13, 1.14]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Set up Go ${{ matrix.goVer }}
|
- name: Set up Go ${{ matrix.goVer }}
|
||||||
|
|
|
@ -26,8 +26,6 @@ jobs:
|
||||||
# Don't build windows-32bit due to missing MinGW dependencies
|
# Don't build windows-32bit due to missing MinGW dependencies
|
||||||
# Don't build osx-32bit due to eventual drop in Go support
|
# Don't build osx-32bit due to eventual drop in Go support
|
||||||
exclude:
|
exclude:
|
||||||
- os: windows-latest
|
|
||||||
arch: '386'
|
|
||||||
- os: macos-latest
|
- os: macos-latest
|
||||||
arch: '386'
|
arch: '386'
|
||||||
steps:
|
steps:
|
||||||
|
@ -37,8 +35,8 @@ jobs:
|
||||||
go-version: 1.14
|
go-version: 1.14
|
||||||
# - if: matrix.os == 'ubuntu-latest'
|
# - if: matrix.os == 'ubuntu-latest'
|
||||||
# run: sudo apt-get update && sudo apt-get install -y gcc-multilib
|
# run: sudo apt-get update && sudo apt-get install -y gcc-multilib
|
||||||
# - if: matrix.arch == '386'
|
- if: matrix.arch == '386'
|
||||||
# run: echo "::set-env name=RELEASE::gophish-${{ github.event.release.tag_name }}-${{ matrix.releaseos}}-32bit"
|
run: echo "::set-env name=RELEASE::hack-browser-data-${{ github.event.release.tag_name }}-${{ matrix.releaseos}}-32bit"
|
||||||
- if: matrix.arch == 'amd64'
|
- if: matrix.arch == 'amd64'
|
||||||
run: echo "::set-env name=RELEASE::hack-browser-data-${{ github.event.release.tag_name}}-${{ matrix.releaseos}}-64bit"
|
run: echo "::set-env name=RELEASE::hack-browser-data-${{ github.event.release.tag_name}}-${{ matrix.releaseos}}-64bit"
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
Loading…
Reference in New Issue