Skip to content

Commit

Permalink
build arm and amd linux
Browse files Browse the repository at this point in the history
  • Loading branch information
eumel8 committed Jun 17, 2024
1 parent a9d2c1e commit 73995ad
Showing 1 changed file with 31 additions and 23 deletions.
54 changes: 31 additions & 23 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,45 +10,53 @@ on:
types: [created]

jobs:
release-linux-amd64:
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
#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
- 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 -debug .
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
# uses: actions/upload-artifact@v4
- 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:
# name: linux-amd64
# path: fyne-cross/dist/linux-amd64/
- name: Release
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
# arch:
# - linux-amd64
#- uses: wangyoucao577/[email protected]
# with:
# github_token: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 73995ad

Please sign in to comment.