forked from clawpack/geoclaw
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
15 additions
and
18 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,29 +10,28 @@ permissions: | |
contents: read | ||
|
||
env: | ||
TEST: ${{ github.workspace }} | ||
CLAW: ${{ github.workspace }}/clawpack | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
# - name: Set up Python 3.10 | ||
# uses: actions/setup-python@v5 | ||
# with: | ||
# python-version: "3.10" | ||
# - name: Install dependencies | ||
# run: | | ||
# sudo apt-get update | ||
# sudo apt-get install gfortran liblapack-pic liblapack-dev libnetcdf-dev libnetcdff-dev | ||
# python -m pip install --upgrade pip | ||
# pip install flake8 pytest | ||
|
||
- name: Testing | ||
- name: Set up Python 3.10 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.10" | ||
- name: Install dependencies | ||
run: | | ||
echo $GITHUB_WORKSPACE | ||
export CLAW="$GITHUB_WORKSPACE/clawpack" | ||
sudo apt-get update | ||
sudo apt-get install gfortran liblapack-pic liblapack-dev libnetcdf-dev libnetcdff-dev | ||
python -m pip install --upgrade pip | ||
pip install flake8 pytest | ||
# - name: Testing | ||
# run: | | ||
# echo $GITHUB_WORKSPACE | ||
echo $CLAW | ||
echo $TEST | ||
|
||
- name: Checkout clawpack | ||
uses: actions/[email protected] | ||
|
@@ -50,9 +49,7 @@ jobs: | |
- name: Install clawpack | ||
run: | | ||
cd $CLAW | ||
# pip install --user -e $CLAW | ||
|
||
|
||
pip install --user -e $CLAW | ||
# - name: Lint with flake8 | ||
# run: | | ||
|