[前][次][番号順一覧][スレッド一覧]

ruby-changes:57719

From: Kazuhiro <ko1@a...>
Date: Wed, 11 Sep 2019 23:40:05 +0900 (JST)
Subject: [ruby-changes:57719] fba5bbc695 (master): Moved doxygen.yml to https://github.com/ruby/actions [ci skip]

https://git.ruby-lang.org/ruby.git/commit/?id=fba5bbc695

From fba5bbc69545f6d45f7a2c649321a61f43a0b1a0 Mon Sep 17 00:00:00 2001
From: Kazuhiro NISHIYAMA <zn@m...>
Date: Wed, 11 Sep 2019 23:38:05 +0900
Subject: Moved doxygen.yml to https://github.com/ruby/actions [ci skip]


diff --git a/.github/workflows/doxygen.yml b/.github/workflows/doxygen.yml
deleted file mode 100644
index 8c50967..0000000
--- a/.github/workflows/doxygen.yml
+++ /dev/null
@@ -1,48 +0,0 @@ https://github.com/ruby/ruby/blob/trunk/#L0
-name: doxygen
-on:
-  schedule:
-    - cron: '20 * * * *'
-
-jobs:
-  latest:
-    runs-on: ubuntu-latest
-    steps:
-      - 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: 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 --no-progress
-        env:
-          AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
-          AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
-        if: github.repository == 'ruby/ruby'
-- 
cgit v0.10.2


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]