From b13eb7a90b3e455e6de6ccc1b3a48a6886472ffb Mon Sep 17 00:00:00 2001 From: Paolo Tormene Date: Thu, 3 Aug 2023 15:56:14 +0200 Subject: [PATCH] Remove OQ_DISTRIBUTE=zmq whilre running demos --- .github/workflows/macos_intel_install.yml | 6 +++--- .github/workflows/macos_m1_monterey_install.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/macos_intel_install.yml b/.github/workflows/macos_intel_install.yml index af76dd7748dd..fc9f314e7076 100644 --- a/.github/workflows/macos_intel_install.yml +++ b/.github/workflows/macos_intel_install.yml @@ -63,13 +63,13 @@ jobs: # run demos with job_hazard.ini and job_risk.ini for demo_dir in $(find . -type d | sort); do if [ -f $demo_dir/job_hazard.ini ]; then - OQ_DISTRIBUTE=zmq oq engine --run $demo_dir/job_hazard.ini --exports npz -p pointsource_distance=0 - OQ_DISTRIBUTE=zmq oq engine --run $demo_dir/job_risk.ini --hc -1 + oq engine --run $demo_dir/job_hazard.ini --exports npz -p pointsource_distance=0 + oq engine --run $demo_dir/job_risk.ini --hc -1 fi done # run the other demos for ini in $(find . -name job.ini | sort); do - OQ_DISTRIBUTE=zmq oq engine --run $ini --exports xml,hdf5 -p pointsource_distance=0 -r + oq engine --run $ini --exports xml,hdf5 -p pointsource_distance=0 -r done - name: Run tests for calculators and advanced manual to test installation diff --git a/.github/workflows/macos_m1_monterey_install.yml b/.github/workflows/macos_m1_monterey_install.yml index c1e140626f66..59d75257f417 100644 --- a/.github/workflows/macos_m1_monterey_install.yml +++ b/.github/workflows/macos_m1_monterey_install.yml @@ -91,13 +91,13 @@ jobs: # run demos with job_hazard.ini and job_risk.ini for demo_dir in $(find . -type d | sort); do if [ -f $demo_dir/job_hazard.ini ]; then - OQ_DISTRIBUTE=zmq oq engine --run $demo_dir/job_hazard.ini --exports npz -p pointsource_distance=0 - OQ_DISTRIBUTE=zmq oq engine --run $demo_dir/job_risk.ini --hc -1 + oq engine --run $demo_dir/job_hazard.ini --exports npz -p pointsource_distance=0 + oq engine --run $demo_dir/job_risk.ini --hc -1 fi done # run the other demos for ini in $(find . -name job.ini | sort); do - OQ_DISTRIBUTE=zmq oq engine --run $ini --exports xml,hdf5 -p pointsource_distance=0 -r + oq engine --run $ini --exports xml,hdf5 -p pointsource_distance=0 -r done - name: Run tests for calculators and advanced manual to test installation