Skip to content

hubci/arc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

67 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

HubCI's arc GitHub release (with filter) CI Status Go Report Card Go Reference Software License

A helpful terminal tool for day-to-day programming.

arc provides small, helpful features for developers using CircleCI, GitHub, and GitLab. arc is currently considered in alpha so it can change rapidly, including broken changes, before the v1.0 release comes out. GitLab support has begun to land, starting with the status page. Overtime, we'll be adding more support until it comes into feature parity with the GitHub features.

Table of Contents

Installation

Linux

There are a few ways you can install arc on a Linux amd64, arm64, or armhf system.

Ubuntu Apt Repository (recommended)

I (Ricardo N Feliciano) run an Apt/Debian repository for a lot of my software, which includes Arc. The benefit of the Apt repository is that updates are handled by Ubuntu's built-in package manager.

For security reasons, first we install the GPG key for the repository:

sudo wget "https://pkg.feliciano.tech/ftech-archive-keyring.gpg" -P /usr/share/keyrings/

Now we add the repository to the system:

echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/ftech-archive-keyring.gpg] https://pkg.feliciano.tech/ubuntu $(lsb_release -sc) main" | sudo tee /etc/apt/sources.list.d/felicianotech.list

Finally, we can install Arc:

sudo apt update && sudo apt install hubci-arc

Debian Package (.deb)

You can install arc on an Apt based operating system by downloading the .deb file to the desired system.

For graphical systems, you can download it from the GitHub Releases page. Many distros allow you to double-click the file to install. Via terminal, you can do the following:

wget https://github.com/hubci/arc/releases/download/v0.10.0/arc_0.10.0_amd64.deb
sudo dpkg -i arc_0.10.0_amd64.deb

0.10.0 and amd64 may need to be replaced with your desired version and CPU architecture respectively.

Binary Install

You can download and run the raw arc binary from the GitHub Releases page if you don't want to use any package manager. Simply download the tarball for your OS and architecture and extract the binary to somewhere in your PATH. Here's one way to do this with curl and tar:

dlURL="https://github.com/hubci/arc/releases/download/v0.10.0/arc-v0.10.0-linux-amd64.tar.gz"
curl -sSL $dlURL | sudo tar -xz -C /usr/local/bin arc

0.10.0 and amd64 may need to be replaced with your desired version and CPU architecture respectively.

macOS

There are two ways you can install arc on a macOS (amd64) system.

Brew (recommended)

Installing arc via brew is a simple one-liner:

brew install hubci/tap/arc

Binary Install

You can download and run the raw arc binary from the GitHub Releases page if you don't want to use Brew. Simply download the tarball for your OS and architecture and extract the binary to somewhere in your PATH. Here's one way to do this with curl and tar:

dlURL="https://github.com/hubci/arc/releases/download/v0.10.0/arc-v0.10.0-macos-amd64.tar.gz"
curl -sSL $dlURL | sudo tar -xz -C /usr/local/bin arc

0.10.0 may need to be replaced with your desired version.

Windows

arc supports Windows 10 by downloading and installing the binary. Chocolately support is likely coming in the future. If there's a Windows package manager you'd like support for (including Chocolately), please open a GitHub Issue and ask for it.

Binary Install (exe)

You can download and run the arc executable from the GitHub Releases page. Simply download the zip for architecture and extract the exe.

Usage

Run arc help to see all commands available.

License

This repository is licensed under the MIT license. The license can be found here.