fix DNS resolution

This commit is contained in:
Ishaan Jaff 2025-03-26 08:55:18 -07:00
parent e5a5dca777
commit c3dc4a2ecd

View file

@ -9,7 +9,11 @@ commands:
- run:
name: "Configure Google DNS"
command: |
echo "nameserver 8.8.8.8" | sudo tee /etc/resolv.conf
# Backup original resolv.conf
sudo cp /etc/resolv.conf /etc/resolv.conf.backup
# Add both local and Google DNS servers
echo "nameserver 127.0.0.11" | sudo tee /etc/resolv.conf
echo "nameserver 8.8.8.8" | sudo tee -a /etc/resolv.conf
echo "nameserver 8.8.4.4" | sudo tee -a /etc/resolv.conf
jobs:
@ -242,6 +246,7 @@ jobs:
steps:
- checkout
- setup_google_dns
- run:
name: Show git commit hash
command: |