mirror of
https://github.com/awalsh128/cache-apt-pkgs-action.git
synced 2026-09-25 08:14:23 +00:00
test with go code changes
This commit is contained in:
parent
e81159c6fb
commit
1e76f95692
7
.github/workflows/pull_request.yml
vendored
7
.github/workflows/pull_request.yml
vendored
|
|
@ -29,9 +29,12 @@ jobs:
|
||||||
# with:
|
# with:
|
||||||
# version: v1.52.2
|
# version: v1.52.2
|
||||||
|
|
||||||
- name: Ensure apt_query binaries are executable
|
- name: Build apt_query binaries
|
||||||
run: | #shell
|
run: | #shell
|
||||||
chmod +x apt_query-x86 apt_query-arm64 || true
|
cd src/cmd/apt_query
|
||||||
|
GOOS=linux GOARCH=amd64 go build -o ../../../apt_query-x86 .
|
||||||
|
GOOS=linux GOARCH=arm64 go build -o ../../../apt_query-arm64 .
|
||||||
|
chmod +x ../../../apt_query-x86 ../../../apt_query-arm64
|
||||||
|
|
||||||
- name: Test action
|
- name: Test action
|
||||||
id: test-action
|
id: test-action
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue