From e4b9948732bd07f59f734ff2144d4099a9c5ed24 Mon Sep 17 00:00:00 2001 From: Ravindra Shinde Date: Fri, 11 Jun 2021 14:34:19 +0200 Subject: [PATCH] Update build_fparser.yml --- .github/workflows/build_fparser.yml | 23 +++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build_fparser.yml b/.github/workflows/build_fparser.yml index e43df8c..49faf66 100644 --- a/.github/workflows/build_fparser.yml +++ b/.github/workflows/build_fparser.yml @@ -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" +