1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2025-12-15 15:33:22 -05:00

Tey using bash to set path

This commit is contained in:
Jon Beniston 2025-09-22 15:04:01 +01:00
parent ea5b474b1c
commit 55e5d52656
2 changed files with 8 additions and 10 deletions

View File

@ -44,17 +44,16 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Set PATH
shell: bash
run: |
echo "C:\Program Files (x86)\NSIS" >> "$GITHUB_PATH"
- name: Install basic dependencies on Windows
if: startsWith(matrix.config.os, 'windows')
run: |
choco install ninja cmake nsis.install
ninja --version
cmake --version
- name: Set PATH
shell: cmd
run: |
call refreshenv
echo ::set-env name=PATH::%PATH%
makensis /VERSION
- name: Install MSVC on Windows
if: startsWith(matrix.config.os, 'windows')

View File

@ -40,17 +40,16 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Set PATH
shell: bash
run: |
echo "C:\Program Files (x86)\NSIS" >> "$GITHUB_PATH"
- name: Install basic dependencies on Windows
if: startsWith(matrix.config.os, 'windows')
run: |
choco install ninja cmake nsis.install
ninja --version
cmake --version
- name: Set PATH
shell: cmd
run: |
call refreshenv
echo ::set-env name=PATH::%PATH%
makensis /VERSION
- name: Install MSVC on Windows
if: startsWith(matrix.config.os, 'windows')