mirror of https://github.com/jetkvm/kvm.git
Updates: golangci-lint workflow
This commit is contained in:
parent
423d5775e3
commit
d5295d0e4b
|
@ -27,6 +27,27 @@ jobs:
|
||||||
uses: actions/setup-go@fa96338abe5531f6e34c5cc0bbe28c1a533d5505 # v4.2.1
|
uses: actions/setup-go@fa96338abe5531f6e34c5cc0bbe28c1a533d5505 # v4.2.1
|
||||||
with:
|
with:
|
||||||
go-version: 1.24.4
|
go-version: 1.24.4
|
||||||
|
- name: Extract versions from Makefile
|
||||||
|
id: versions
|
||||||
|
run: |
|
||||||
|
ALSA_VERSION=$(grep '^ALSA_VERSION' Makefile | cut -d'=' -f2 | tr -d ' ?')
|
||||||
|
OPUS_VERSION=$(grep '^OPUS_VERSION' Makefile | cut -d'=' -f2 | tr -d ' ?')
|
||||||
|
echo "alsa_version=$ALSA_VERSION" >> $GITHUB_OUTPUT
|
||||||
|
echo "opus_version=$OPUS_VERSION" >> $GITHUB_OUTPUT
|
||||||
|
echo "Extracted ALSA_VERSION: $ALSA_VERSION"
|
||||||
|
echo "Extracted OPUS_VERSION: $OPUS_VERSION"
|
||||||
|
- name: Cache audio dependencies
|
||||||
|
id: cache-audio-deps
|
||||||
|
uses: actions/cache@v4
|
||||||
|
with:
|
||||||
|
path: ~/.jetkvm
|
||||||
|
key: audio-deps-${{ runner.os }}-alsa-${{ steps.versions.outputs.alsa_version }}-opus-${{ steps.versions.outputs.opus_version }}
|
||||||
|
- name: Setup development environment
|
||||||
|
if: steps.cache-audio-deps.outputs.cache-hit != 'true'
|
||||||
|
run: make dev_env
|
||||||
|
env:
|
||||||
|
ALSA_VERSION: ${{ steps.versions.outputs.alsa_version }}
|
||||||
|
OPUS_VERSION: ${{ steps.versions.outputs.opus_version }}
|
||||||
- name: Create empty resource directory
|
- name: Create empty resource directory
|
||||||
run: |
|
run: |
|
||||||
mkdir -p static && touch static/.gitkeep
|
mkdir -p static && touch static/.gitkeep
|
||||||
|
@ -35,3 +56,8 @@ jobs:
|
||||||
with:
|
with:
|
||||||
args: --verbose
|
args: --verbose
|
||||||
version: v2.0.2
|
version: v2.0.2
|
||||||
|
env:
|
||||||
|
CGO_ENABLED: 1
|
||||||
|
SRCDIR: ${{ github.workspace }}
|
||||||
|
ALSA_VERSION: ${{ steps.versions.outputs.alsa_version }}
|
||||||
|
OPUS_VERSION: ${{ steps.versions.outputs.opus_version }}
|
||||||
|
|
Loading…
Reference in New Issue