Last active
February 12, 2022 14:19
-
-
Save thaddeusc1/5525060e4815e40d51dd3b4e4d658b41 to your computer and use it in GitHub Desktop.
Setup Ubuntu 18.04 for regression tests
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted. | |
| # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | |
| # Choose a local Ubuntu repository mirror | |
| software-properties-gtk | |
| sudo apt upgrade ca-certificates | |
| sudo apt install -y \ | |
| mesa-utils \ | |
| synaptic \ | |
| epiphany-browser \ | |
| build-essential \ | |
| git \ | |
| cmake-gui \ | |
| php-curl \ | |
| php-sqlite3 \ | |
| php-bz2 \ | |
| clinfo \ | |
| exfat-fuse | |
| sudo snap install 1password | |
| sudo snap install --classic code | |
| xdg-mime default code_code.desktop text/plain |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment