Skip to content

Commit

Permalink
fix(ci): Try to fix expat.
Browse files Browse the repository at this point in the history
  • Loading branch information
Et7f3 committed Jun 27, 2020
1 parent 8638b97 commit 2d8a1d7
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/workflows/validate-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ jobs:
- uses: actions/checkout@v2
- name: Install esy
run: npm install -g esy
# * BSD / macOS >=10.7 (arc4random_buf): HAVE_ARC4RANDOM_BUF,
# * BSD / macOS <10.7 (arc4random): HAVE_ARC4RANDOM
- name: Install native dependencies on macos-latest
run: brew install arc4random_buf
if: matrix.os == 'macos-latest'
- name: Setup Git to push back
run: |
git remote set-url --push origin https://$GITHUB_ACTOR:$GITHUB_TOKEN@github.com/$GITHUB_REPOSITORY
Expand Down Expand Up @@ -84,7 +89,11 @@ jobs:
- uses: actions/checkout@v2
- name: Install esy
run: npm install -g esy
- run: brew install coreutils
# * BSD / macOS >=10.7 (arc4random_buf): HAVE_ARC4RANDOM_BUF,
# * BSD / macOS <10.7 (arc4random): HAVE_ARC4RANDOM
- name: Install native dependencies on macos-latest
run: brew install coreutils arc4random_buf
if: matrix.os == 'macos-latest'
- name: Solve doc dependencies
run: esy @doc install
- name: Print esy cache
Expand Down Expand Up @@ -178,6 +187,11 @@ jobs:
- uses: actions/checkout@v2
- name: Install esy
run: npm install -g esy
# * BSD / macOS >=10.7 (arc4random_buf): HAVE_ARC4RANDOM_BUF,
# * BSD / macOS <10.7 (arc4random): HAVE_ARC4RANDOM
- name: Install native dependencies on macos-latest
run: brew install arc4random_buf
if: matrix.os == 'macos-latest'
- name: Install native dependencies on ubuntu-latest
if: matrix.os == 'ubuntu-latest'
run: |
Expand Down

0 comments on commit 2d8a1d7

Please sign in to comment.