Fix libheif and git describe #7
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build release binaries | |
on: | |
push: | |
branches: ['travis/release-bin'] | |
release: | |
types: ['published'] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
permissions: | |
contents: read | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-latest | |
- windows-latest | |
arch: | |
- amd64 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-tags: true | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.20' | |
- name: Install libheif | |
if: runner.os == 'linux' | |
run: "chmod +x ./.github/workflows/build-libheif.sh && ./.github/workflows/build-libheif.sh" | |
- name: Dist | |
if: runner.os == 'linux' | |
run: | | |
set -ex | |
platform=${{ runner.os }} | |
platform=${platform,,} | |
mkdir -p $PWD/bin/dist | |
GOBIN=$PWD/bin go install -v ./cmd/utilities/compile_assets | |
$PWD/bin/compile_assets | |
pth="$platform-${{ matrix.arch }}" | |
mkdir -p $PWD/bin/$pth | |
GOOS=$platform GOARCH=${{ matrix.arch }} GOBIN=$PWD/bin go build -o $PWD/bin/$pth -a -ldflags "-X github.com/t2bot/matrix-media-repo/common/version.Version=$(git describe --tags)" -v ./cmd/... | |
GOOS=$platform GOARCH=${{ matrix.arch }} GOBIN=$PWD/bin go build -pgo=pgo_media_repo.pprof -o $PWD/bin/$pth -a -ldflags "-X github.com/t2bot/matrix-media-repo/common/version.Version=$(git describe --tags)" -v ./cmd/workers/media_repo | |
cd $PWD/bin/$pth | |
arch=${{ matrix.arch }} | |
if [ "$arch" == "amd64" ]; then | |
arch="x64" | |
fi | |
for file in * ; do mv -v $file ../dist/${file}-${platform_os}-${arch}; done; | |
cd ../../ | |
rm -rv $PWD/bin/dist/compile_assets* | |
- name: Upload | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ matrix.os }}-${{ matrix.arch }} | |
path: ./bin/dist/* |