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 1
1
FROM centos:centos7
2
2
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
4
4
5
5
COPY entrypoint.sh /entrypoint.sh
6
6
Original file line number Diff line number Diff line change 1
1
# 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 '
4
4
inputs :
5
- who-to-greet : # id of input
6
- description : ' Who to greet '
5
+ destination : # id of input
6
+ description : ' destination directory '
7
7
required : true
8
- default : ' World '
8
+ default : ' /tmp/ltfs '
9
9
outputs :
10
10
time : # id of output
11
- description : ' The time we greeted you '
11
+ description : ' Finish build check of the LTFS package '
12
12
runs :
13
13
using : ' docker'
14
14
image : ' Dockerfile'
15
15
args :
16
- - ${{ inputs.who-to-greet }}
16
+ - ${{ inputs.destination }}
Original file line number Diff line number Diff line change 1
1
#! /bin/sh -l
2
2
3
3
./autogen.sh
4
- ./configure --prefix=/tmp/ltfs
4
+ ./configure --prefix=$1
5
5
make
6
6
make install
You can’t perform that action at this time.
0 commit comments