From f9d061d41d4e8eb53ba44c8fff2ea1e6dee4b672 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Radek=20Barto=C5=88?= Date: Thu, 8 Feb 2024 13:59:03 +0100 Subject: [PATCH] tmp --- .github/scripts/install-toolchain.sh | 4 ++-- .github/workflows/check-repository.yml | 10 ++++++++-- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/.github/scripts/install-toolchain.sh b/.github/scripts/install-toolchain.sh index e62a802..1dfbaf0 100755 --- a/.github/scripts/install-toolchain.sh +++ b/.github/scripts/install-toolchain.sh @@ -7,11 +7,11 @@ set -o pipefail # fail of any command in pipeline is an error pacman -Syu --noconfirm # Add WoArm64 custom repository. -REPO="[woarm64] +REPO='[woarm64] Server = https://windows-on-arm-experiments.github.io/msys2-woarm64-build/x86_64 SigLevel = Optional -" +' echo -e "$REPO$(cat /etc/pacman.conf)" > /etc/pacman.conf pacman -Sy --noconfirm diff --git a/.github/workflows/check-repository.yml b/.github/workflows/check-repository.yml index fbdc4d8..d88d542 100644 --- a/.github/workflows/check-repository.yml +++ b/.github/workflows/check-repository.yml @@ -38,5 +38,11 @@ jobs: runs-on: [Windows, GCC, ARM64] steps: - - name: Checkout repository - uses: actions/checkout@v4 + - name: Download artifacts + uses: actions/download-artifact@v4 + with: + name: hello-world + path: hello-world.exe + + - name: Run hello-world.exe + run: hello-world.exe