mirror of
https://github.com/TREX-CoE/fparser.git
synced 2025-01-03 01:56:19 +01:00
Update build_fparser.yml
This commit is contained in:
parent
c5bfce3eea
commit
e4b9948732
23
.github/workflows/build_fparser.yml
vendored
23
.github/workflows/build_fparser.yml
vendored
@ -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"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user