Skip to content

Commit

Permalink
Check github.repository in doxygen.yml [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
znz committed Sep 7, 2019
1 parent a7a2be7 commit c725a4e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/doxygen.yml
Expand Up @@ -14,27 +14,35 @@ jobs:
sudo apt-get update
sudo apt-get install ruby2.5 doxygen graphviz
sudo apt-get build-dep ruby2.5
if: github.repository == 'ruby/ruby'

# Not using official actions/checkout because it's unstable and sometimes doesn't work for a fork.
- name: Checkout ruby/ruby
run: |
git clone --depth=10 https://github.com/ruby/ruby . && git reset --hard "$GITHUB_SHA"
if: github.repository == 'ruby/ruby'

- name: Fixed world writable dirs
run: |
chmod go-w $HOME
sudo chmod -R go-w /usr/share
if: github.repository == 'ruby/ruby'
- run: autoconf
if: github.repository == 'ruby/ruby'
- name: Configure
run: |
./configure
if: github.repository == 'ruby/ruby'
- name: Generate Doxyfile
run: make Doxyfile
if: github.repository == 'ruby/ruby'
- name: Run Doxygen
run: doxygen
if: github.repository == 'ruby/ruby'
- name: Upload results
run: |
aws s3 sync doc/capi/html/ s3://rubyci/doxygen-latest-html
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
if: github.repository == 'ruby/ruby'

0 comments on commit c725a4e

Please sign in to comment.