Skip to content

Commit

Permalink
Pass static arg
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielbmotta authored and juangpc committed Mar 16, 2023
1 parent b19d211 commit 97353a6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pullrequest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -219,15 +219,15 @@ jobs:
run: |
export QT_DIR="$(pwd)/../Qt5_binaries/lib/cmake/Qt5"
export Qt5_DIR="$(pwd)/../Qt5_binaries/lib/cmake/Qt5"
./tools/building/build_project.bat
./tools/building/build_project.bat static
- name: Configure and compile MNE-CPP (Windows)
if: matrix.os == 'windows-2019'
run: |
cmd.exe /c "call `"C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat`" && set > %temp%\vcvars.txt"
Get-Content "$env:temp\vcvars.txt" | Foreach-Object { if ($_ -match "^(.*?)=(.*)$") { Set-Content "env:\$($matches[1])" $matches[2] } }
$env:QT_DIR += "$PWD\..\Qt5_binaries\lib\cmake\Qt5"
$env:Qt5_DIR += "$PWD\..\Qt5_binaries\lib\cmake\Qt5"
./tools/building/build_project.bat
./tools/building/build_project.bat static
- name: Deploy binaries
run: |
./tools/deployment/deploy.bat static pack
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
run: |
export QT_DIR="$(pwd)/../Qt5_binaries/lib/cmake/Qt5"
export Qt5_DIR="$(pwd)/../Qt5_binaries/lib/cmake/Qt5"
./tools/building/build_project.bat
./tools/building/build_project.bat static
- name: Deploy binaries
run: |
./tools/deployment/deploy.bat static pack
Expand Down Expand Up @@ -146,7 +146,7 @@ jobs:
run: |
export QT_DIR="$(pwd)/../Qt5_binaries/lib/cmake/Qt5"
export Qt5_DIR="$(pwd)/../Qt5_binaries/lib/cmake/Qt5"
./tools/building/build_project.bat
./tools/building/build_project.bat static
- name: Deploy binaries
run: |
./tools/deployment/deploy.bat static pack
Expand Down Expand Up @@ -216,7 +216,7 @@ jobs:
Get-Content "$env:temp\vcvars.txt" | Foreach-Object { if ($_ -match "^(.*?)=(.*)$") { Set-Content "env:\$($matches[1])" $matches[2] } }
$env:QT_DIR += "$PWD\..\Qt5_binaries\lib\cmake\Qt5"
$env:Qt5_DIR += "$PWD\..\Qt5_binaries\lib\cmake\Qt5"
./tools/building/build_project.bat
./tools/building/build_project.bat static
- name: Deploy binaries
run: |
./tools/deployment/deploy.bat static pack
Expand Down

0 comments on commit 97353a6

Please sign in to comment.