Update build_fparser.yml

This commit is contained in:
Ravindra Shinde 2021-06-11 14:34:19 +02:00 committed by GitHub
parent c5bfce3eea
commit e4b9948732
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 15 additions and 8 deletions

View File

@ -18,7 +18,10 @@ jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
runs-on: self-hosted
defaults:
run:
shell: bash
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
@ -26,11 +29,15 @@ jobs:
- 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: Run a multi-line script
- name: Compile
run: |
echo Add other actions to build,
echo test, and deploy your project.
echo "Working directory ::"
echo $PWD
echo "Configure ::"
./configure --prefix=$PWD FC=ifort CC=icc
echo "Make ::"
make
echo "Make install::"
make install
echo "Compilation is sucessfull"