|
- name: Download SIPNET for Linux |
|
run: | |
|
curl -L -o sipnet-linux "https://github.com/PecanProject/sipnet/releases/download/v1.3.0/sipnet-linux-v1.3.0" |
|
chmod +x sipnet-linux |
|
|
|
# compile PEcAn code |
|
- name: build |
|
run: make -j1 |
|
|
|
# run SIPNET test |
|
- name: copy met file into working directory |
|
run: Rscript -e 'file.copy(system.file("niwot.clim", package = "PEcAn.SIPNET"), "niwot.clim")' |
|
- name: integration test |
|
run: ./tests/integration.sh ghaction |
The current SIPNET integration test in CI workflow is running against an outdated version of the SIPNET binary (v1.3.0).Since the latest version is v2.0.0,Should we update the CI to use this latest one?
pecan/.github/workflows/sipnet.yml
Lines 52 to 65 in 56aec9a
The current SIPNET integration test in CI workflow is running against an outdated version of the SIPNET binary (v1.3.0).Since the latest version is v2.0.0,Should we update the CI to use this latest one?