This is an automated email from the ASF dual-hosted git repository.

lordgamez pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi-minifi-cpp.git


The following commit(s) were added to refs/heads/main by this push:
     new 1206f3f33 MINIFICPP-2528 disable jom in CI
1206f3f33 is described below

commit 1206f3f333a1350856178c3a7b16708892f93b5d
Author: Marton Szasz <[email protected]>
AuthorDate: Wed Feb 19 14:33:03 2025 +0100

    MINIFICPP-2528 disable jom in CI
    
    because windows CI builds are often failing, and I suspect it's because the 
OpenSSL build system doesn't tolerate parallel builds well.
    
    Signed-off-by: Gabor Gyimesi <[email protected]>
    
    This closes #1934
---
 .github/workflows/ci.yml | 8 --------
 1 file changed, 8 deletions(-)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index ad0938ed2..c772aa544 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -195,14 +195,6 @@ jobs:
       - name: Add sccache to path
         run: '[Environment]::SetEnvironmentVariable("PATH", 
[Environment]::GetEnvironmentVariable("PATH", 
[EnvironmentVariableTarget]::Machine) + ";" + (Split-Path -Path 
$env:SCCACHE_PATH -Parent), [EnvironmentVariableTarget]::Machine);'
         shell: powershell
-      - name: Install jom
-        run: |
-          Invoke-WebRequest -Uri 
"http://download.qt.io/official_releases/jom/jom_1_1_4.zip"; -OutFile "jom.zip"
-          if ((Get-FileHash 'jom.zip').Hash -ne 
"d533c1ef49214229681e90196ed2094691e8c4a0a0bef0b2c901debcb562682b") {Write 
"Hash mismatch"; Exit 1}
-          New-Item -ItemType Directory -Path D:\jom
-          Expand-Archive -Path jom.zip -DestinationPath D:\jom
-          [Environment]::SetEnvironmentVariable("PATH", 
[Environment]::GetEnvironmentVariable("PATH", 
[EnvironmentVariableTarget]::Machine) + ";D:\jom", 
[EnvironmentVariableTarget]::Machine);
-        shell: powershell
       - name: build
         run: |
           python -m venv venv & venv\Scripts\activate & pip install -r 
requirements.txt & python main.py --noninteractive --skip-compiler-install 
--minifi-options="%WINDOWS_MINIFI_OPTIONS%" 
--cmake-options="-DCMAKE_C_COMPILER_LAUNCHER=sccache 
-DCMAKE_CXX_COMPILER_LAUNCHER=sccache"

Reply via email to