Skip to content

build arm and amd linux #31

build arm and amd linux

build arm and amd linux #31

Workflow file for this run

# https://github.com/marketplace/actions/go-release-binaries
name: build app
on:
push:
branches:
- main
tags:
- '*'
release:
types: [created]
jobs:
fyne-cross-and-release:
name: release linux/amd64
runs-on: ubuntu-latest
#strategy:
# matrix:
# goos: [linux]
# #goos: [linux, windows, darwin]
# goarch: [amd64]
# #goarch: [amd64, arm64]
# exclude:
# - goarch: arm64
# goos: windows
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v3
- name: install packages & compile
run: |
go version
sudo apt update
sudo apt-get -y install bc gcc libgl1-mesa-dev libwayland-dev libx11-dev libxkbcommon-dev xorg-dev xvfb
go install github.com/fyne-io/fyne-cross@latest
export PATH=$PATH:~/go/bin
echo "$HOME/go/bin" >> $GITHUB_PATH
fyne-cross linux -output carbon-app -arch=amd64,arm64 -debug .
#sudo apt update
#sudo apt-get -y install bc gcc libgl1-mesa-dev libwayland-dev libx11-dev libxkbcommon-dev xorg-dev xvfb
#sudo apt-get -y install libxcursor-dev libxrandr-dev libxinerama-dev libxi-dev gcc pkg-config libxxf86vm-dev
- name: Upload artifacts for linux-amd64
uses: actions/upload-artifact@v4
with:
name: carbonapp-amd64
path: fyne-cross/dist/linux-amd64/
- name: Upload artifacts for linux-arm64
uses: actions/upload-artifact@v4
with:
name: carbonapp-arm64
path: fyne-cross/dist/linux-arm64/
#- name: Release linux-amd64
# uses: fnkr/github-action-ghr@v1
# if: startsWith(github.ref, 'refs/tags/')
# env:
# GHR_PATH: fyne-cross/dist/linux-amd64/
# GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
# GHR_REPLACE: true
# with:
# arch:
# - linux-amd64
#- uses: wangyoucao577/[email protected]
# with:
# github_token: ${{ secrets.GITHUB_TOKEN }}
# goos: ${{ matrix.goos }}
# goarch: ${{ matrix.goarch }}
# binary_name: carbon-app
# retry: 10
# sha256sum: true
# pre_command: go mod tidy