Skip to content

Commit

Permalink
Finalizing latest CIs, RTStruct preferences properly saved.
Browse files Browse the repository at this point in the history
  • Loading branch information
dbouget committed Aug 31, 2023
1 parent 7cadb85 commit 53f0f60
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 19 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/build_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,6 @@ jobs:
with:
python-version: "3.7"

- name: Collect submodules
uses: actions/checkout@v3
with:
submodules: 'recursive'

- name: Download ANTs
uses: robinraju/release-downloader@main
with:
Expand All @@ -47,7 +42,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install -r assets/requirements.txt
# pip install matplotlib==3.3.4
pip install matplotlib==3.3.4
- name: Build software
run: |
Expand Down
9 changes: 2 additions & 7 deletions .github/workflows/build_macos_m1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,6 @@ jobs:
steps:
- uses: actions/checkout@v1

- name: Collect submodules
uses: actions/checkout@v3
with:
submodules: 'recursive'

- name: Create environment and install python packages
run: |
cd ${{github.workspace}}
Expand Down Expand Up @@ -83,8 +78,8 @@ jobs:
- name: Make installer
run: |
git clone https://github.com/dbouget/quickpkg.git
quickpkg/quickpkg dist/Raidionics.app --output Raidionics-1.2.0-macOS.pkg
cp -r Raidionics-1.2.0-macOS.pkg dist/Raidionics-1.2.0-macOS.pkg
quickpkg/quickpkg dist/Raidionics.app --output Raidionics-1.2.1-macOS.pkg
cp -r Raidionics-1.2.1-macOS.pkg dist/Raidionics-1.2.1-macOS.pkg
- name: Upload package
uses: actions/upload-artifact@v3
Expand Down
5 changes: 0 additions & 5 deletions .github/workflows/build_ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,6 @@ jobs:
with:
python-version: "3.7"

- name: Collect submodules
uses: actions/checkout@v3
with:
submodules: 'recursive'

- name: Free Up GitHub Actions Ubuntu Runner Disk Space
uses: jlumbroso/free-disk-space@main
with:
Expand Down
2 changes: 1 addition & 1 deletion gui/UtilsWidgets/CustomQDialog/SoftwareSettingsDialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ def __on_use_registered_inputs_status_changed(self, status):
UserPreferencesStructure.getInstance().use_registered_inputs = status

def __on_export_results_rtstruct_status_changed(self, status):
UserPreferencesStructure.getInstance()._export_results_as_rtstruct = status
UserPreferencesStructure.getInstance().export_results_as_rtstruct = status

def __on_compute_corticalstructures_status_changed(self, state):
UserPreferencesStructure.getInstance().compute_cortical_structures = state
Expand Down
1 change: 1 addition & 0 deletions utils/logic/PipelineResultsCollector.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,4 +184,5 @@ def collect_results(patient_parameters, pipeline):
except Exception:
logging.error("Could not collect results for step {}.\n Received: {}".format(pipeline[step]["description"],
traceback.format_exc()))
continue
return results

0 comments on commit 53f0f60

Please sign in to comment.