Skip to content

Commit

Permalink
ci: build test Ci
Browse files Browse the repository at this point in the history
  • Loading branch information
atolycs committed Jun 6, 2024
1 parent 875fc34 commit 07d0383
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- run: |
sudo apt update && sudo apt install -y g++-arm-linux-gnueabihf
sudo apt update && sudo apt install -y g++-arm-linux-gnueabihf build-essential
- uses: cli/gh-extension-precompile@v1
with:
build_script_override: "build.sh"
Expand Down
6 changes: 5 additions & 1 deletion build.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
#!/usr/bin/env bash

echo "Building Windows execution..."
make win64
echo "Building Linux execution..."
make linux
make GOARCH=arm GOARM=6 linux

echo "Building Linux ARM execution..."
make CC=arm-linux-gnueabihf-gcc GOARCH=arm GOARM=6 linux

0 comments on commit 07d0383

Please sign in to comment.