This repository was archived by the owner on May 20, 2026. It is now read-only.
STAC-23429 Security Updates #15
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Go | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| name: Test on Go ${{ matrix.go-version }} and ${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| go-version: [1.24.x] | |
| os: [ubuntu-latest] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version: ${{ matrix.go-version }} | |
| check-latest: true | |
| - name: Build on ${{ matrix.os }} | |
| if: matrix.os == 'windows-latest' | |
| env: | |
| CGO_ENABLED: 0 | |
| GO111MODULE: on | |
| run: | | |
| go build --ldflags="-s -w" -o %GOPATH%\bin\minio.exe | |
| go test -v --timeout 50m ./... | |
| - name: Build on ${{ matrix.os }} | |
| if: matrix.os == 'ubuntu-latest' | |
| env: | |
| CGO_ENABLED: 0 | |
| GO111MODULE: on | |
| run: | | |
| sudo sysctl net.ipv6.conf.all.disable_ipv6=0 | |
| sudo sysctl net.ipv6.conf.default.disable_ipv6=0 | |
| make crosscompile |