From c4a91ab22f761e3a920920b36eb13e788b07fe0b Mon Sep 17 00:00:00 2001 From: dzid26 Date: Wed, 10 Apr 2024 12:52:10 +0100 Subject: [PATCH] CI: sdcc 4.4.0 --- .github/workflows/build.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index adebb8fe..5d24f358 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -15,7 +15,7 @@ on: - "src/**/*" env: - SDCC_VERSION: 4.2.0 + SDCC_VERSION: 4.4.0 jobs: Build_Windows: @@ -23,7 +23,7 @@ jobs: steps: - name: install SDCC run: | #install silent and then unpack missing installation libraries - Invoke-WebRequest https://altushost-swe.dl.sourceforge.net/project/sdcc/sdcc-win64/$env:SDCC_VERSION/sdcc-$env:SDCC_VERSION-x64-setup.exe -OutFile sdcc_setup.exe + Invoke-WebRequest https://altushost-swe.dl.sourceforge.net/project/sdcc/sdcc-win32/$env:SDCC_VERSION/sdcc-$env:SDCC_VERSION-setup.exe -OutFile sdcc_setup.exe Start-Process -wait -FilePath "sdcc_setup.exe" -ArgumentList "/S", "/D=C:\Program Files\SDCC" - uses: actions/checkout@v2 - name: Build