Skip to content

Commit

Permalink
Merge pull request #1912 from Unidata/gh-action.wif
Browse files Browse the repository at this point in the history
Added an apt update stanza to the github action script.
  • Loading branch information
WardF authored Dec 16, 2020
2 parents eba281a + bb2b864 commit 9a2c0ef
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

- name: Install System dependencies
shell: bash -l {0}
run: sudo apt install -y libaec-dev zlib1g-dev automake autoconf libcurl4-openssl-dev libjpeg-dev wget curl bzip2 m4 flex bison cmake
run: sudo apt update && sudo apt install -y libaec-dev zlib1g-dev automake autoconf libcurl4-openssl-dev libjpeg-dev wget curl bzip2 m4 flex bison cmake

###
# Installing libhdf4 and libhdf5
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:

- name: Install System dependencies
shell: bash -l {0}
run: sudo apt install -y libaec-dev zlib1g-dev automake autoconf libcurl4-openssl-dev libjpeg-dev wget curl bzip2 m4 flex bison cmake
run: sudo apt update && sudo apt install -y libaec-dev zlib1g-dev automake autoconf libcurl4-openssl-dev libjpeg-dev wget curl bzip2 m4 flex bison cmake

###
# Set Environmental Variables
Expand Down Expand Up @@ -164,7 +164,7 @@ jobs:

- name: Install System dependencies
shell: bash -l {0}
run: sudo apt install -y libaec-dev zlib1g-dev automake autoconf libcurl4-openssl-dev libjpeg-dev wget curl bzip2 m4 flex bison cmake
run: sudo apt update && sudo apt install -y libaec-dev zlib1g-dev automake autoconf libcurl4-openssl-dev libjpeg-dev wget curl bzip2 m4 flex bison cmake

###
# Set Environmental Variables
Expand Down

0 comments on commit 9a2c0ef

Please sign in to comment.