Update scala3-library to 3.3.5 #1835
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: coursier/setup-action@v1 | |
with: | |
jvm: adopt:8 | |
- uses: coursier/cache-action@v6 | |
- name: Update package lists | |
run: sudo apt-get update | |
- name: Install libhdf5-dev | |
run: sudo apt-get install libhdf5-dev | |
- name: Install libcurl-dev | |
run: sudo apt-get install libcurl4-openssl-dev | |
- name: Set NetCDF install location | |
run: echo "NETCDF_PATH=$HOME/netcdf" >> $GITHUB_ENV | |
- name: Cache NetCDF installation | |
id: cache-netcdf | |
uses: actions/cache@v3 | |
with: | |
path: ${{ env.NETCDF_PATH }} | |
key: ${{ runner.os }}-netcdf-4.7.4 | |
- name: Install NetCDF | |
if: steps.cache-netcdf.outputs.cache-hit != 'true' | |
run: | | |
cd $HOME | |
curl -OL https://github.com/Unidata/netcdf-c/archive/v4.7.4.tar.gz | |
tar -xf v4.7.4.tar.gz | |
cd netcdf-c-4.7.4 | |
CPPFLAGS=-I/usr/include/hdf5/serial LDFLAGS=-L/usr/lib/x86_64-linux-gnu/hdf5/serial ./configure --prefix=$NETCDF_PATH | |
make install | |
- name: Run tests | |
run: sbt -v +test | |
env: | |
LD_LIBRARY_PATH: ${{ env.NETCDF_PATH }}/lib |