summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorKazuhiro NISHIYAMA <zn@mbf.nifty.com>2019-09-03 18:36:08 +0900
committerKazuhiro NISHIYAMA <zn@mbf.nifty.com>2019-09-03 18:36:08 +0900
commit36a0c668b69d90c881246324e76cdb8889047026 (patch)
tree95c547258c9b7ea95cb95e171636ed7bfba3e8c6 /.github
parent83889292f5e0944d6762228c9ca81318f618aa4e (diff)
Remove SKIP_DOXYGEN because job.env does not set in `if:`
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/doxygen.yml18
1 files changed, 0 insertions, 18 deletions
diff --git a/.github/workflows/doxygen.yml b/.github/workflows/doxygen.yml
index fbd972a1cf..1b23ee7e7b 100644
--- a/.github/workflows/doxygen.yml
+++ b/.github/workflows/doxygen.yml
@@ -7,16 +7,6 @@ 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
@@ -24,35 +14,27 @@ jobs:
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 }}