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