File tree Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 11FROM centos:centos7
22
3- RUN yum -y update && yum -y upgrade && yum -y install automake autoconf libtool icu libicu-devel libxml2-devel libuuid-devel fuse-devel net-snmp-devel
3+ RUN yum -y update && yum -y upgrade && yum -y install automake autoconf libtool make icu libicu-devel libxml2-devel libuuid-devel fuse-devel net-snmp-devel
44
55COPY entrypoint.sh /entrypoint.sh
66
Original file line number Diff line number Diff line change 11# action.yml
2- name : ' Hello World '
3- description : ' Greet someone and record the time '
2+ name : ' Build Check '
3+ description : ' Build check of the LTFS package '
44inputs :
5- who-to-greet : # id of input
6- description : ' Who to greet '
5+ destination : # id of input
6+ description : ' destination directory '
77 required : true
8- default : ' World '
8+ default : ' /tmp/ltfs '
99outputs :
1010 time : # id of output
11- description : ' The time we greeted you '
11+ description : ' Finish build check of the LTFS package '
1212runs :
1313 using : ' docker'
1414 image : ' Dockerfile'
1515 args :
16- - ${{ inputs.who-to-greet }}
16+ - ${{ inputs.destination }}
Original file line number Diff line number Diff line change 11#! /bin/sh -l
22
33./autogen.sh
4- ./configure --prefix=/tmp/ltfs
4+ ./configure --prefix=$1
55make
66make install
You can’t perform that action at this time.
0 commit comments