summaryrefslogtreecommitdiff
path: root/.github/workflows/doxygen.yml
blob: fbd972a1cf969df0ac9cc09a3bd61e8e5547c10f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
name: doxygen
on:
  schedule:
    - cron: '20 * * * *'

jobs:
  latest:
    runs-on: ubuntu-latest
    steps:
      - name: Download current index.html
        run: |
          curl -o /tmp/index.html https://rubyci.s3.amazonaws.com/doxygen-latest-html/index.html || touch /tmp/index.html
          grep projectnumber /tmp/index.html || :
          echo "GITHUB_SHA=${GITHUB_SHA}"
          if grep -q "${GITHUB_SHA}" /tmp/index.html; then
            echo '##[set-env name=SKIP_DOXYGEN]'true
          else
            echo '##[set-env name=SKIP_DOXYGEN]'false
          fi
      - name: Install libraries
        run: |
          set -x
          sudo sed /etc/apt/sources.list -e "s/^# deb-src/deb-src/g" -i
          sudo apt-get update
          sudo apt-get install ruby2.5 doxygen graphviz
          sudo apt-get build-dep ruby2.5
        if: job.env.SKIP_DOXYGEN != 'true'

      # 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: job.env.SKIP_DOXYGEN != 'true'

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