Skip to content

Commit

Permalink
Update test results color implementation to point to files for colors (
Browse files Browse the repository at this point in the history
…#359)

* update test results color implementation to point to files for color rather than web links

* update github actions test script

* fix compiler check in github action script

* update conda macos build
  • Loading branch information
apcraig authored Apr 7, 2021
1 parent ed0a991 commit 5cf2232
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/test-icepack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ on:

defaults:
run:
shell: /bin/csh {0}
shell: /bin/csh -e {0}

jobs:
build:
Expand Down Expand Up @@ -83,9 +83,9 @@ jobs:
conda env create -f configuration/scripts/machines/environment.yml
- name: check conda env
run: |
conda activate icepack && which mpicc && which mpifort && which make
mpifort --version
mpicc --version
conda activate icepack && which clang && which gfortran && which make
gfortran --version
clang --version
make --version
- name: check setup case
run: |
Expand All @@ -104,7 +104,7 @@ jobs:
- name: download input data
run: |
cd $HOME/icepack-dirs/input
wget https://zenodo.org/record/3728287/files/Icepack_data-20200326.tar.gz && tar xvfz ICEPACK_data-20200326.tar.gz
wget --progress=dot:giga https://zenodo.org/record/3728287/files/Icepack_data-20200326.tar.gz && tar xvfz ICEPACK_data-20200326.tar.gz
pwd
ls -alR
# - name: run case
Expand Down
1 change: 1 addition & 0 deletions configuration/scripts/machines/Macros.conda_macos
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ ifeq ($(strip $(SDKPATH)),)
CFLAGS_HOST :=
else
CFLAGS_HOST = -isysroot $(SDKPATH)
LD += -L$(SDKPATH)/usr/lib
endif

# Necessary flag to compile with OpenMP support
Expand Down
10 changes: 5 additions & 5 deletions configuration/scripts/tests/report_results.csh
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,11 @@ if ("${shrepo}" !~ "*cice-consortium*") then
endif

set noglob
set green = "\![#00C000](https://placehold.it/15/00C000/000000?text=+)"
set red = "\![#F00000](https://placehold.it/15/F00000/000000?text=+)"
set orange = "\![#FFA500](https://placehold.it/15/FFA500/000000?text=+)"
set yellow = "\![#FFE600](https://placehold.it/15/FFE600/000000?text=+)"
set gray = "\![#AAAAAA](https://placehold.it/15/AAAAAA/000000?text=+)"
set green = "\![#00C000](images/00C000.png)"
set red = "\![#F00000](images/F00000.png)"
set orange = "\![#FFA500](images/FFA500.png)"
set yellow = "\![#FFE600](images/FFE600.png)"
set gray = "\![#AAAAAA](images/AAAAAA.png)"
unset noglob

#==============================================================
Expand Down

0 comments on commit 5cf2232

Please sign in to comment.