Posts

What is a Job in Jenkins? - Jenkins Tour #02

Image
Basically, a job in Jenkins is any runnable task that is controlled by Jenkins. In recent Jenkins Documentation , the term job is replaced by the term project . So job = project. So let's see some of the jobs or projects available in Jenkins. Type of Projects FreeStyle Project The most common type of project and normal build step for this type of project executes a hell(Linux) or batch(Windows) command. there are times you need to execute something on the batch or on the command line and this project provides that capability in an automated way. Also if you are not using Maven or Ant or you are using some other build system freestyle project is the way to go so you can call the invocation command at the end of the project. Also, these project normally ends in shell command but that doesn't mean they always need to end in shell command. Pipeline This type is used to be called workflow. Normally written in Jenkins Domain Specific Language (DSL). This type is used for more thing...

What the Hell is Jenkins? - Jenkins Tour #01

Image
So if you are someone like me who has been introduced to Jenkins for the first time and is wondering and trying to understand what the hell it is😖, this post is for you.😃 Jenkins is a free and open-source tool that automates repetitive tasks in software development. Named after a helpful butler, Jenkins builds, tests, and deploys software projects automatically. It compiles code, runs tests, and deploys software to servers or other platforms. People use Jenkins to save time and effort by automating tasks and catching errors early. It is used throughout the software development cycle, monitoring code repositories and initiating actions like compiling, testing, and deployment. Jenkins provides feedback to developers about the success or failure of these actions. make no sense right😅 let's go through the stages of the development of a typical software product(note the tags I put mentioning Jenkin's involvement.) Requirements Gathering(No Jenkins involvement) Design(No Jenkins i...

Work with Directories in the Terminal with Bash

Image
6 commands to remember mkdir touch mv cp rm mkdir mkdir is used to create directories. create a directory named project01 create  directories named project02 and project03 create a subdirectory in a directory create a subdirectory in a directory (the parent directory doe not exist) touch touch is used to create files. mv mv is used to move files. cp cp is used to copy files. rm rm removes files   

Find Files in the terminal with Bash

Image
  There are 3 commands in Linux to find files. whereis which find whereis returns binaries, source files, and manual pages. get the location of the bash executable file and the manual (man) file only get the location of the bash file which only returns executables or source files get the location of the bash executable file find returns all the search results from a particular hierarchy to get all the files with .md extension in the current working directory. to get the file with the name file,txt in a different directory (in this case home directory) in the below command only gives the exact file with name file.txt , if case sensitivity can be removed it will return all the files that have same name. to get all the files with the type directory

List Content in the Terminal with Bash

Image
ls - lists the files in the directory Use of wildcards to find every file starts with capital s to find every file starts with capital c and capital s to find file/files with the .md extension to find file/files with any two-character extension (the number of  "?" represents the character length of the extension) to find file/files start with and upper case characters  to find file/files start with and lower case characters 

Navigate the Terminal with Bash

Image
pwd - print working directory tree - shows the directory structure whoami - whom as I'm logged in cd  - change directory cd ~  - goes home directory  I'm using a directory structure created like the one below. cd ..   or cd ../ - goes one level back cd ../..   or cd ../../ - goes two levels back pushd and popd pushd saves the current directory and changes to a new one, while popd reverts to the previously saved directory. They allow easy navigation between directories in a stack-like manner. Credits The article “How to Get Help in Bash” draws inspiration from and references the following YouTube video: Video Title: “How to Navigate the Terminal with Bash [5 of 20] | Bash for Beginners” YouTube Link:  Watch Here Original Video Creators: Josh Duffney Gwyneth Peña-Siguenza I would like to express my gratitude to Josh Duffney and Gwyneth Peña-Siguenza for creating the informative and helpful video that served as a valuable resource in the development of this...

How to get help in Bash

Image
There are two commands for you to get help in the Bash. They are help and the man command. But you need to know the command you want to use in order to get help on it. help Let’s say you want to help with cd command. So in your Bash shell type help cd Now what you need to focus on is the first line. in this case, it is so this is the command itself and all the optional parameters it has in order to use it. So anything inside the square bracket is optional, and anything that is divided by a vertical bar, or usually we call by pipe symbol “|” meaning it’s mutually exclusive, which means you can use only one of the options but not both. For example, you can use cd -L -e /path/to/directory cd -P -e /path/to/directory but not L -P -e /path/to/directory Now you u have thought of what does this -L, -P really means. So those are listed in the options section. So to make the most use of this command you need to scan the top section of the command and then the options section. both I described...