Skip to content

Commit

Permalink
Merge pull request #58 from LBL-EESA/develop
Browse files Browse the repository at this point in the history
release 4.1.0
  • Loading branch information
burlen authored May 11, 2021
2 parents a69edd5 + 4597d6a commit 7e62d0a
Show file tree
Hide file tree
Showing 4 changed files with 274 additions and 67 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/develop.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# This is a basic workflow to help you get started with Actions

name: CI

# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the develop branch
push:
branches: [ develop ]
pull_request:
branches: [ develop ]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-20.04

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2

# Runs a single command using the runners shell
- name: Run a one-line script
run: echo Hello, world!

# Runs a set of commands using the runners shell
- name: do_build
run: |
export DEBIAN_FRONTEND="noninteractive"
export TZ="America/Los_Angeles"
sudo apt-get update -qq
sudo apt-get install -qq -y git-core gcc g++ gfortran cmake subversion automake m4 wget
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Debug -DENABLE_OPENSSL=ON -DTECA_SOURCE=develop -DCMAKE_INSTALL_PREFIX=`pwd`/../../sb-install ..
make -j2 install
Loading

0 comments on commit 7e62d0a

Please sign in to comment.