From a3a3991303cb367bf1e3188c4e84688b1a6089b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=88=9A=28noham=29=C2=B2?= <100566912+NohamR@users.noreply.github.com> Date: Sun, 25 Aug 2024 15:57:20 +0200 Subject: [PATCH] Update build_latest.yml --- .github/workflows/build_latest.yml | 50 +++++++----------------------- 1 file changed, 12 insertions(+), 38 deletions(-) diff --git a/.github/workflows/build_latest.yml b/.github/workflows/build_latest.yml index 1ac51cf..51232ad 100644 --- a/.github/workflows/build_latest.yml +++ b/.github/workflows/build_latest.yml @@ -54,48 +54,14 @@ jobs: build/*.exe build/*.bin build/*.app/**/* - - build-win-arm64: - runs-on: windows-latest - - steps: - - name: Check-out repository - uses: actions/checkout@v4 - - - name: Setup Python - uses: actions/setup-python@v5 - with: - python-version: '3.10' - cache: 'pip' - cache-dependency-path: | - **/requirements*.txt - architecture: 'arm64' - - - name: Install Dependencies - run: | - pip install -r requirements.txt - - - name: Build Executable with Nuitka - uses: Nuitka/Nuitka-Action@main - with: - nuitka-version: main - script-name: gofilecli.py - onefile: true - - - name: Upload Artifact[win-arm64] - uses: actions/upload-artifact@v3.1.3 - with: - name: GoFileCLI_win-arm64 - path: | - build/*.exe - build/*.bin - build/*.app/**/* build-linux-x64: runs-on: ubuntu-latest - container: ubuntu:18.04 steps: + - name: Check runner architecture + run: uname -m + - run: apt-get update - run: apt-get install -y curl wget - name: Check-out repository @@ -135,6 +101,9 @@ jobs: container: mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-cross-arm64-20220312201346-b2c2436 steps: + - name: Check runner architecture + run: uname -m + - name: Check-out repository uses: actions/checkout@v4 @@ -145,7 +114,6 @@ jobs: cache: 'pip' cache-dependency-path: | **/requirements*.txt - architecture: 'arm64' - name: Install Dependencies run: | @@ -171,6 +139,9 @@ jobs: runs-on: macos-latest steps: + - name: Check runner architecture + run: uname -m + - name: Check-out repository uses: actions/checkout@v4 @@ -207,6 +178,9 @@ jobs: runs-on: macos-latest steps: + - name: Check runner architecture + run: uname -m + - name: Check-out repository uses: actions/checkout@v4