Merge pull request #294 from ErikKalkoken/fix-sso-background-2 #1102
This file contains hidden or 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
| # Main workflow for testing and releasing | |
| # spellchecker: disable | |
| name: CI/CD | |
| env: | |
| GOVERSION: "1.25.3" | |
| NAME: "evebuddy" | |
| FULLNAME: "EVE Buddy" | |
| FULLNAME2: "EVE_Buddy" # for AppImage file, e.g. with spaces replaced by underscores | |
| VERSION: "0.0.0" | |
| on: push | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: ${{ env.GOVERSION }} | |
| - name: Install OS dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install gcc libgl1-mesa-dev xorg-dev | |
| - name: Install go dependencies | |
| run: go mod download | |
| - name: Run tests | |
| run: go test -coverprofile=coverage.txt ./... | |
| - name: Upload results to Codecov | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| package_linux: | |
| if: startsWith(github.ref, 'refs/tags/') | |
| needs: test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: ${{ env.GOVERSION }} | |
| - name: Install build dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install gcc libgl1-mesa-dev xorg-dev libfuse2 | |
| - name: Install Fyne tool | |
| run: go install fyne.io/tools/cmd/fyne@latest | |
| - name: Set version | |
| run: | | |
| VERSION=${{ github.ref_name }} | |
| echo "VERSION=${VERSION:1}" >> $GITHUB_ENV | |
| - name: Package Fyne app | |
| run: | | |
| fyne package --os linux --release --tags migrated_fynedo --metadata janiceAPIKey=${{ secrets.JANICE_API_KEY }} | |
| mv '${{ env.FULLNAME }}.tar.xz' ${{ env.NAME }}-${{ env.VERSION }}-linux-amd64.tar.xz | |
| - name: Inspect | |
| run: ls -R | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: ${{ env.NAME }}-linux | |
| path: ${{ env.NAME }}-${{ env.VERSION }}-linux-amd64.tar.xz | |
| if-no-files-found: error | |
| overwrite: true | |
| package_appimage: | |
| if: startsWith(github.ref, 'refs/tags/') | |
| needs: test | |
| runs-on: ubuntu-22.04 # oldest available image = best AppImage compatibility | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: ${{ env.GOVERSION }} | |
| - name: Install build dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install gcc libgl1-mesa-dev xorg-dev libfuse2 | |
| - name: Install Fyne tool | |
| run: go install fyne.io/tools/cmd/fyne@latest | |
| - name: Package Fyne app | |
| run: fyne package --os linux --release --tags migrated_fynedo --metadata janiceAPIKey=${{ secrets.JANICE_API_KEY }} | |
| - name: Inspect | |
| run: ls -R | |
| - name: Set version | |
| run: | | |
| VERSION=${{ github.ref_name }} | |
| echo "VERSION=${VERSION:1}" >> $GITHUB_ENV | |
| - name: Build AppImage | |
| run: tools/build_appimage.sh | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: ${{ env.NAME }}-appimage | |
| path: ${{ env.FULLNAME2 }}-${{ env.VERSION }}-x86_64.AppImage | |
| if-no-files-found: error | |
| overwrite: true | |
| package_windows: | |
| if: startsWith(github.ref, 'refs/tags/') | |
| needs: test | |
| runs-on: windows-latest | |
| defaults: | |
| run: | |
| shell: msys2 {0} | |
| steps: | |
| - uses: msys2/setup-msys2@v2 | |
| with: | |
| path-type: inherit | |
| update: true | |
| - uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: ${{ env.GOVERSION }} | |
| - name: Install Dependencies | |
| run: > | |
| pacman -Syu && | |
| pacman --noconfirm -S git zip mingw-w64-x86_64-toolchain | |
| - name: Install Fyne tool | |
| run: go install fyne.io/tools/cmd/fyne@latest | |
| - name: Package | |
| run: fyne package --os windows --release --tags migrated_fynedo --metadata janiceAPIKey=${{ secrets.JANICE_API_KEY }} | |
| - name: Inspect | |
| run: ls -R | |
| - name: Set version | |
| run: | | |
| VERSION=${{ github.ref_name }} | |
| echo "VERSION=${VERSION:1}" >> $GITHUB_ENV | |
| - name: ZIP package | |
| run: zip -j ${{ env.NAME }}-${{ env.VERSION }}-windows-x64.zip "${{ env.FULLNAME }}.exe" | |
| - name: Upload artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: ${{ env.NAME }}-windows | |
| path: ${{ env.NAME }}-${{ env.VERSION }}-windows-x64.zip | |
| if-no-files-found: error | |
| overwrite: true | |
| package_darwin_arm: | |
| if: startsWith(github.ref, 'refs/tags/') | |
| runs-on: macos-14 | |
| needs: test | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Xcode | |
| uses: maxim-lobanov/setup-xcode@v1 | |
| with: | |
| xcode-version: latest-stable | |
| - name: Set up Go | |
| uses: actions/setup-go@v4 | |
| with: | |
| go-version: ${{ env.GOVERSION }} | |
| - name: Install Fyne tool | |
| run: go install fyne.io/tools/cmd/fyne@latest | |
| - name: Package app bundles | |
| run: fyne package --os darwin --release --tags migrated_fynedo --metadata janiceAPIKey=${{ secrets.JANICE_API_KEY }} | |
| - name: Inspect | |
| run: ls -R | |
| - name: Set version | |
| run: | | |
| VERSION=${{ github.ref_name }} | |
| echo "VERSION=${VERSION:1}" >> $GITHUB_ENV | |
| - name: ZIP app bundle | |
| run: zip --symlinks -r ${{ env.NAME }}-${{ env.VERSION }}-darwin-arm64.zip "${{ env.FULLNAME }}.app/" | |
| - name: Upload artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: ${{ env.NAME }}-macos-arm | |
| path: ${{ env.NAME }}-${{ env.VERSION }}-darwin-arm64.zip | |
| if-no-files-found: error | |
| overwrite: true | |
| package_darwin_intel: | |
| if: startsWith(github.ref, 'refs/tags/') | |
| runs-on: macos-13 | |
| needs: test | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Xcode | |
| uses: maxim-lobanov/setup-xcode@v1 | |
| with: | |
| xcode-version: latest-stable | |
| - name: Set up Go | |
| uses: actions/setup-go@v4 | |
| with: | |
| go-version: ${{ env.GOVERSION }} | |
| - name: Install Fyne tool | |
| run: go install fyne.io/tools/cmd/fyne@latest | |
| - name: Package app bundles | |
| run: fyne package --os darwin --release --tags migrated_fynedo --metadata janiceAPIKey=${{ secrets.JANICE_API_KEY }} | |
| - name: Inspect | |
| run: ls -R | |
| - name: Set version | |
| run: | | |
| VERSION=${{ github.ref_name }} | |
| echo "VERSION=${VERSION:1}" >> $GITHUB_ENV | |
| - name: ZIP app bundle | |
| run: zip --symlinks -r ${{ env.NAME }}-${{ env.VERSION }}-darwin-intel64.zip "${{ env.FULLNAME }}.app/" | |
| - name: Upload artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: ${{ env.NAME }}-macos-intel | |
| path: ${{ env.NAME }}-${{ env.VERSION }}-darwin-intel64.zip | |
| if-no-files-found: error | |
| overwrite: true | |
| package_android: | |
| if: startsWith(github.ref, 'refs/tags/') | |
| needs: test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: ${{ env.GOVERSION }} | |
| - name: Install build dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install gcc libgl1-mesa-dev xorg-dev libfuse2 | |
| - name: Download Android NDK | |
| run: | | |
| wget -nv https://dl.google.com/android/repository/android-ndk-r27c-linux.zip | |
| unzip -q android-ndk-r27c-linux.zip | |
| - name: Install Fyne tool | |
| run: go install fyne.io/tools/cmd/fyne@latest | |
| - name: Package Fyne app | |
| run: | | |
| export ANDROID_NDK_HOME="$PWD/android-ndk-r27c" | |
| fyne package --os android --release --tags migrated_fynedo --metadata janiceAPIKey=${{ secrets.JANICE_API_KEY }} | |
| ls | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: ${{ env.NAME }}-android | |
| path: ${{ env.FULLNAME2 }}.apk | |
| if-no-files-found: error | |
| overwrite: true | |
| release: | |
| if: startsWith(github.ref, 'refs/tags/') | |
| needs: | |
| [ | |
| package_appimage, | |
| package_linux, | |
| package_darwin_arm, | |
| package_darwin_intel, | |
| package_windows, | |
| package_android, | |
| ] | |
| runs-on: ubuntu-latest | |
| permissions: write-all | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/download-artifact@v4 | |
| with: | |
| merge-multiple: true | |
| - name: Make version string | |
| run: | | |
| VERSION=${{ github.ref_name }} | |
| echo "VERSION=${VERSION:1}" >> $GITHUB_ENV | |
| - name: Create release | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| files: | | |
| ${{ env.NAME }}-${{ env.VERSION }}-windows-x64.zip | |
| ${{ env.FULLNAME2 }}-${{ env.VERSION }}-x86_64.AppImage | |
| ${{ env.NAME }}-${{ env.VERSION }}-linux-amd64.tar.xz | |
| ${{ env.NAME }}-${{ env.VERSION }}-darwin-arm64.zip | |
| ${{ env.NAME }}-${{ env.VERSION }}-darwin-intel64.zip | |
| ${{ env.FULLNAME2 }}.apk |