Skip to content

Commit d3a7eb3

Browse files
committed
ci: force fasmg website ip on macOS since DNS is borked?
1 parent 510bda7 commit d3a7eb3

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

.github/workflows/branch.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,10 @@ jobs:
6363
pathSource: ${{steps.ez80-bins.outputs.file-path}}
6464
pathTarget: ${{env.CEDEV_BIN}}
6565

66+
- name: Add fasmg website to /etc/hosts since DNS seems to be broken
67+
if: runner.os == 'macOS'
68+
run: |
69+
sudo echo "208.99.203.253 flatassembler.net" | sudo tee -a /etc/hosts
6670
- name: Download Fasmg Download Page
6771
id: fasmg-download
6872
uses: carlosperate/[email protected]

.github/workflows/make.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,10 @@ jobs:
6666
pathSource: ${{steps.ez80-bins.outputs.file-path}}
6767
pathTarget: ${{env.CEDEV_BIN}}
6868

69+
- name: Add fasmg website to /etc/hosts since DNS seems to be broken
70+
if: runner.os == 'macOS'
71+
run: |
72+
sudo echo "208.99.203.253 flatassembler.net" | sudo tee -a /etc/hosts
6973
- name: Download Fasmg Download Page
7074
id: fasmg-download
7175
uses: carlosperate/[email protected]

0 commit comments

Comments
 (0)