@@ -10,32 +10,32 @@ CSI_PKG := lib/go/csi
1010# This is the target for building the temporary CSI protobuf file.
1111#
1212# The temporary file is not versioned, and thus will always be
13- # built on Travis-CI .
13+ # built on GitHub Actions .
1414$(CSI_PROTO ) .tmp : $(CSI_SPEC ) Makefile
1515 echo " // Code generated by make; DO NOT EDIT." > " $@ "
1616 cat $< | sed -n -e ' /```protobuf$$/,/^```$$/ p' | sed ' /^```/d' >> " $@ "
1717
1818# This is the target for building the CSI protobuf file.
1919#
2020# This target depends on its temp file, which is not versioned.
21- # Therefore when built on Travis-CI the temp file will always
22- # be built and trigger this target. On Travis-CI the temp file
21+ # Therefore when built on GitHub Actions the temp file will always
22+ # be built and trigger this target. On GitHub Actions the temp file
2323# is compared with the real file, and if they differ the build
2424# will fail.
2525#
2626# Locally the temp file is simply copied over the real file.
2727$(CSI_PROTO ) : $(CSI_PROTO ) .tmp
28- ifeq (true,$(TRAVIS ) )
28+ ifeq (true,$(GITHUB_ACTIONS ) )
2929 diff "$@" "$?"
3030else
3131 diff "$@" "$?" > /dev/null 2>&1 || cp -f "$?" "$@"
3232endif
3333
3434build : check
3535
36- # If this is not running on Travis-CI then for sake of convenience
36+ # If this is not running on GitHub Actions then for sake of convenience
3737# go ahead and update the language bindings as well.
38- ifneq (true,$(TRAVIS ) )
38+ ifneq (true,$(GITHUB_ACTIONS ) )
3939build : build_cpp build_go
4040endif
4141
0 commit comments