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 0747ba7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 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
9 changes: 6 additions & 3 deletions .github/workflows/go-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,17 +46,20 @@ 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"
Expand All @@ -75,11 +78,11 @@ jobs:
echo 'MSYS=MINGW32' >>"$GITHUB_ENV"
esac
fi
echo "shell=$shell" >>"$GITHUB_STATE"
echo "shell=$shell" >>"$GITHUB_OUTPUT"
shell: bash
- uses: actions/checkout@v4
- run: ${{ inputs.run }}
shell: ${{ state.shell }}
shell: ${{ steps.spec.outputs.shell }}
- if: inputs.upload-artifact-path != ''
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit 0747ba7

Please sign in to comment.