Skip to content

Instantly share code, notes, and snippets.

---
os: linux
language: generic
python: "3.7"
matrix:
include:
- os: linux
dist: Bionic
addons:
apt:
@mustafa-travisci
mustafa-travisci / .travis.yml
Last active January 17, 2022 19:32
PostgreSQL12 on Focal
---
dist: focal
language: ruby
addons:
postgresql: '12'
apt:
packages:
- postgresql-12
env:
@mustafa-travisci
mustafa-travisci / .travis.yml
Created April 5, 2021 08:43
PostgreSQL12 + Node10.x.x on Xenial
---
language: node_js
node_js:
- "10.23.0"
addons:
postgresql: "12"
apt:
packages:
@mustafa-travisci
mustafa-travisci / .travis.yml
Created April 2, 2021 14:16
MongoDB4.2 on Xenial
---
language: node_js
os: linux
dist: xenial
node_js:
- '12'
before_install:
- wget -qO - https://www.mongodb.org/static/pgp/server-4.2.asc | sudo apt-key add -
- echo "deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu xenial/mongodb-org/4.2 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-4.2.list
- sudo apt-get update
@mustafa-travisci
mustafa-travisci / .travis.yml
Created April 2, 2021 13:47
MongoDB4.4 on Focal
---
language: node_js
os: linux
dist: focal
node_js:
- '12'
addons:
apt:
sources:
- sourceline: deb https://repo.mongodb.org/apt/ubuntu focal/mongodb-org/4.4 multiverse
@mustafa-travisci
mustafa-travisci / .travis.yml
Last active March 30, 2021 10:59
PostgreSQL12 on Bionic
---
language: shell
dist: bionic
env:
global:
- PGPORT=5433
- PGUSER=travis
addons:
@mustafa-travisci
mustafa-travisci / .travis.yml
Last active March 29, 2021 06:17
PostgreSQL12 on Xenial
language: shell
dist: xenial
env:
global:
- PGPORT=5433
- PGUSER=travis
addons:
apt:
@mustafa-travisci
mustafa-travisci / .travis.yml
Last active March 11, 2021 14:38
Config of multiVersion-Rust and OS Matrix
---
language: rust
rust:
- stable
- beta
- nightly
os:
- linux
@mustafa-travisci
mustafa-travisci / .travis.yml
Created July 21, 2020 12:38
Correction on .travis.yml file.
# .travis.yaml
#
# This file is part of NEST.
#
# Copyright (C) 2004 The NEST Initiative
#
# NEST is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
@mustafa-travisci
mustafa-travisci / handling_multiple_github_accounts.md
Created March 14, 2020 09:04 — forked from Jonalogy/handling_multiple_github_accounts.md
Handling Multiple Github Accounts on MacOS

Handling Multiple Github Accounts on MacOS

The only way I've succeeded so far is to employ SSH.

Assuming you are new to this like me, first I'd like to share with you that your Mac has a SSH config file in a .ssh directory. The config file is where you draw relations of your SSH keys to each GitHub (or Bitbucket) account, and all your SSH keys generated are saved into .ssh directory by default. You can navigate to it by running cd ~/.ssh within your terminal, open the config file with any editor, and it should look something like this:

Host *
 AddKeysToAgent yes

> UseKeyChain yes