Use set-env instead of grep in each step

This commit is contained in:
Kazuhiro NISHIYAMA 2019-08-28 10:06:43 +09:00
parent 108dbb389b
commit 624a0ad44d
No known key found for this signature in database
GPG Key ID: 262ED8DBB4222F7A

View File

@ -12,46 +12,47 @@ jobs:
curl -o /tmp/index.html https://rubyci.s3.amazonaws.com/doxygen-latest-html/index.html || touch /tmp/index.html curl -o /tmp/index.html https://rubyci.s3.amazonaws.com/doxygen-latest-html/index.html || touch /tmp/index.html
grep projectnumber /tmp/index.html || : grep projectnumber /tmp/index.html || :
echo "GITHUB_SHA=${GITHUB_SHA}" 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 - name: Install libraries
run: | run: |
set -x set -x
if grep -q "${GITHUB_SHA}" /tmp/index.html; then exit; fi
sudo sed /etc/apt/sources.list -e "s/^# deb-src/deb-src/g" -i sudo sed /etc/apt/sources.list -e "s/^# deb-src/deb-src/g" -i
sudo apt-get update sudo apt-get update
sudo apt-get install ruby2.5 doxygen graphviz sudo apt-get install ruby2.5 doxygen graphviz
sudo apt-get build-dep ruby2.5 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. # Not using official actions/checkout because it's unstable and sometimes doesn't work for a fork.
- name: Checkout ruby/ruby - name: Checkout ruby/ruby
run: | run: |
if grep -q "${GITHUB_SHA}" /tmp/index.html; then exit; fi
git clone --depth=10 https://github.com/ruby/ruby . && git reset --hard "$GITHUB_SHA" 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 - name: Fixed world writable dirs
run: | run: |
if grep -q "${GITHUB_SHA}" /tmp/index.html; then exit; fi
chmod go-w $HOME chmod go-w $HOME
sudo chmod -R go-w /usr/share sudo chmod -R go-w /usr/share
- name: Autoconf if: job.env.SKIP_DOXYGEN != 'true'
run: | - run: autoconf
if grep -q "${GITHUB_SHA}" /tmp/index.html; then exit; fi if: job.env.SKIP_DOXYGEN != 'true'
autoconf
- name: Configure - name: Configure
run: | run: |
if grep -q "${GITHUB_SHA}" /tmp/index.html; then exit; fi
./configure ./configure
if: job.env.SKIP_DOXYGEN != 'true'
- name: Generate Doxyfile - name: Generate Doxyfile
run: | run: make Doxyfile
if grep -q "${GITHUB_SHA}" /tmp/index.html; then exit; fi if: job.env.SKIP_DOXYGEN != 'true'
make Doxyfile
- name: Run Doxygen - name: Run Doxygen
run: | run: doxygen
if grep -q "${GITHUB_SHA}" /tmp/index.html; then exit; fi if: job.env.SKIP_DOXYGEN != 'true'
doxygen
- name: Upload results - name: Upload results
run: | run: |
if grep -q "${GITHUB_SHA}" /tmp/index.html; then exit; fi
aws s3 sync doc/capi/html/ s3://rubyci/doxygen-latest-html aws s3 sync doc/capi/html/ s3://rubyci/doxygen-latest-html
if: job.env.SKIP_DOXYGEN != 'true'
env: env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}