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" +