orbitalci / orbital

Orbital is a self-hosted CI system for solo/small consulting dev teams. Written in Rust.
GNU General Public License v3.0
29 stars 2 forks source link

Add MacOS specific installation notes #272

Open tjtelan opened 3 years ago

tjtelan commented 3 years ago

Most of this issue is to address the bad experience I had with trying to compile orbital on MacOS 11.1.

  = note: ld: library not found for -lpq
          clang: error: linker command failed with exit code 1 (use -v to see invocation)

error: aborting due to previous error

error: could not compile `orb`

Which I fixed by installing postgres via homebrew (Installing libpq did not solve).

brew install postgres


I also needed to install mariadb via homebrew in order to install diesel_cli for the database migrations.

brew install mariadb