Skip to content

Commit

Permalink
temp
Browse files Browse the repository at this point in the history
  • Loading branch information
lufia committed Feb 28, 2024
1 parent 52d7bdd commit fba9d02
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 14 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/build-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,14 @@ on:
push:
branches:
- master
- refactor-b # temp
tags:
- v*
pull_request:


jobs:
build-linux:
name: Build (Unix-like OSes)
env:
DEBIAN_FRONTEND: noninteractive
uses: ./.github/workflows/go-build.yml
with:
os-version: ubuntu-latest
Expand Down
28 changes: 17 additions & 11 deletions .github/workflows/go-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,40 +46,46 @@ on:
required: false
type: string

env:
DEBIAN_FRONTEND: noninteractive
jobs:
run:
runs-on: ${{ inputs.os-version }}
env:
CGO_ENABLED: ${{ inputs.with-cgo - 0 }} # {false|true} -> {0|1}
CGO_ENABLED: ${{ inputs.with-cgo && 1 || 0 }}
steps:
- uses: actions/setup-go@v5
with:
go-version: ${{ inputs.go-version }}
cache: true
- name: Setup environment variables
id: spec
run: |
GOHOSTARCH="$(go env GOHOSTARCH)"
echo "GOARCH=${INPUT_ARCHITECTURE:-$GOHOSTARCH}" >>"$GITHUB_ENV"
GOARCH="${INPUT_ARCHITECTURE:-$GOHOSTARCH}"
echo "GOARCH=$GOARCH" >>"$GITHUB_ENV"
GOHOSTOS="$(go env GOHOSTOS)"
echo "GOOS=${INPUT_PLATFORM:-$GOHOSTOS}" >>"$GITHUB_ENV"
GOOS="${INPUT_PLATFORM:-$GOHOSTOS}"
echo "GOOS=$GOOS" >>"$GITHUB_ENV"
shell=bash
if [[ $GOHOSTOS = windows && $CGO_ENABLED = 1 ]]
then
shell='msys2 {0}'
case $GOARCH in
case "$GOARCH" in
*64)
echo 'MSYS=MINGW64' >>"$GITHUB_ENV"
echo 'MSYS=MINGW64' >>"$GITHUB_ENV" ;;
*)
echo 'MSYS=MINGW32' >>"$GITHUB_ENV"
echo 'MSYS=MINGW32' >>"$GITHUB_ENV" ;;
esac
fi
echo "shell=$shell" >>"$GITHUB_STATE"
shell: bash
- uses: actions/checkout@v4
- run: ${{ inputs.run }}
shell: ${{ state.shell }}
- if: env.MSYS == ''
run: ${{ inputs.run }}
shell: bash
- if: env.MSYS != ''
run: ${{ inputs.run }}
shell: msys2 {0}
- if: inputs.upload-artifact-path != ''
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit fba9d02

Please sign in to comment.