Skip to content

Commit

Permalink
Fix unknown hostname
Browse files Browse the repository at this point in the history
  • Loading branch information
zzambers committed Jul 9, 2024
1 parent e1cefed commit 789c9b2
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/submit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1400,6 +1400,13 @@ jobs:
- name: Select Xcode version
run: sudo xcode-select --switch /Applications/Xcode_14.3.1.app/Contents/Developer

- name: Fix unknown hostname
run: |
hostname
cat /etc/hosts
echo "127.0.0.1 $( hostname )" >> /etc/hosts
cat /etc/hosts
- name: Configure
run: >
bash configure
Expand Down Expand Up @@ -1517,6 +1524,13 @@ jobs:
- name: Select Xcode version
run: sudo xcode-select --switch /Applications/Xcode_14.3.1.app/Contents/Developer

- name: Fix unknown hostname
run: |
hostname
cat /etc/hosts
echo "127.0.0.1 $( hostname )" >> /etc/hosts
cat /etc/hosts
- name: Run tests
run: >
chmod +x "${HOME}/jtreg/bin/jtreg" &&
Expand Down

0 comments on commit 789c9b2

Please sign in to comment.