Home
last modified time | relevance | path

Searched +full:gh +full:- +full:pages (Results 1 – 25 of 98) sorted by relevance

1234

/external/libiio/src/CI/travis/
DgenerateDocumentationAndDeploy.sh.in2 set -x
10 # - Packages doxygen graphviz must be installed.
11 # - An gh-pages branch should already exist. See below for mor info on how to
12 # create a gh-pages branch.
15 # - GH_DOC_TOKEN : Secure token to the github repository.
18 # the gh-pages branch of a repository specified by $TRAVIS_REPO_SLUG
19 # Before this script is used there should already be a gh-pages branch in the
26 ##### Setup this script and get the current gh-pages branch.
28 GH_REPO_NAME=$(echo $TRAVIS_REPO_SLUG | awk -F/ '{print $2}')
31 set -e
[all …]
/external/guice/util/
Dgenerate-latest-docs.sh1 # see http://benlimmer.com/2013/12/26/automatically-publish-javadoc-to-gh-pages-with-travis-ci/ for…
8 echo -e "Publishing javadoc & JDiff...\n"
9 rm -rf build/docs
11 cp -R build/docs/javadoc $HOME/javadoc-latest
12 cp -R build/docs/latest-api-diffs $HOME/api-diffs-latest
13 cp lib/build/jdiff/*.gif $HOME/api-diffs-latest/
16 git config --global user.email "travis@travis-ci.org"
17 git config --global user.name "travis-ci"
18 …git clone --quiet --branch=gh-pages https://${GH_TOKEN}@github.com/google/guice gh-pages > /dev/nu…
20 cd gh-pages
[all …]
/external/jimfs/util/
Dupdate_snapshot_docs.sh3 # see http://benlimmer.com/2013/12/26/automatically-publish-javadoc-to-gh-pages-with-travis-ci/ for…
5 set -e -u
14 git clone -q -b gh-pages https://${GH_TOKEN}@github.com/google/jimfs gh-pages > /dev/null
15 cd gh-pages
17 git config --global user.email "travis@travis-ci.org"
18 git config --global user.name "travis-ci"
22 git push -fq origin gh-pages > /dev/null
24 echo "Javadoc published to gh-pages."
/external/auto/util/
Dgenerate-latest-docs.sh5 set -e
7 echo -e "Publishing javadoc...\n"
9 mvn -f build-pom.xml javadoc:aggregate
13 git clone --quiet --branch=gh-pages "https://x-access-token:${GITHUB_TOKEN}@github.com/google/auto"…
15 cd gh-pages
16 git config --global user.name "$GITHUB_ACTOR"
17 git config --global user.email "$GITHUB_ACTOR@users.noreply.github.com"
18 git rm -rf api/latest
19 mkdir -p api # Just to make mv work if the directory is missing
21 git add -A -f api/latest
[all …]
/external/dagger2/util/
Dgenerate-latest-docs.sh1 set -eux
6 echo -e "Publishing javadoc...\n"
7 bazel build //:user-docs.jar
8 JAVADOC_JAR="$(pwd)/bazel-bin/user-docs.jar"
11 …git clone --quiet --branch=gh-pages https://x-access-token:${GH_TOKEN}@github.com/google/dagger gh…
13 cd gh-pages
14 git config --global user.email "dagger-dev+github@google.com"
15 git config --global user.name "Dagger Team"
16 git rm -rf api/latest
17 mkdir -p api
[all …]
Ddeploy-to-maven-central.sh3 set -eu
5 if [ $# -lt 2 ]; then
6 echo "usage $0 <ssl-key> <version-name> [<param> ...]"
23 bash $(dirname $0)/run-local-tests.sh
25 bash $(dirname $0)/deploy-dagger.sh \
26 "gpg:sign-and-deploy-file" \
28 "-DrepositoryId=sonatype-nexus-staging" \
29 "-Durl=https://oss.sonatype.org/service/local/staging/deploy/maven2/" \
30 "-Dgpg.keyname=${KEY}"
32 bash $(dirname $0)/deploy-hilt.sh \
[all …]
/external/guava/util/
Dupdate_snapshot_docs.sh3 set -e -u
8 git clone -q -b gh-pages "https://x-access-token:${GITHUB_TOKEN}@github.com/google/guava.git" gh-pa…
9 cd gh-pages
11 git config --global user.name "$GITHUB_ACTOR"
12 git config --global user.email "$GITHUB_ACTOR@users.noreply.github.com"
16 git push -fq origin gh-pages > /dev/null
18 echo "Javadoc and JDiff published to gh-pages."
/external/rust/crates/lru-cache/
Ddeploy-docs.sh3 set -o errexit -o nounset
5 rev=$(git rev-parse --short HEAD)
13 git fetch upstream gh-pages
14 git reset upstream/gh-pages
18 git add -A .
19 git commit -m "rebuild pages at ${rev}"
20 git push -q upstream HEAD:gh-pages
/external/okio/.buildscript/
Drestore_v1_docs.sh5 # gh-pages and published along with the other website
6 # content, but if for some reason they have to be re-added
7 # to gh-pages - run this script locally.
9 set -ex
12 DIR=temp-clone
15 rm -rf $DIR
24 git checkout gh-pages
25 git cherry-pick b3205fa199a19d6fbf13ee5c8e0c3d6d2b15b05f
30 rm -rf $DIR
/external/okhttp/
Ddeploy_website.sh3 set -ex
6 DIR=temp-clone
9 rm -rf $DIR
17 # Checkout and track the gh-pages branch
18 git checkout -t origin/gh-pages
21 ls | grep -E -v '^\d+\.x$' | xargs rm -rf
24 cp -R ../website/* .
28 git add -u
29 git commit -m "Website at $(date)"
32 git push origin gh-pages
[all …]
/external/okhttp/okio/
Ddeploy_javadoc.sh3 set -ex
9 DIR=temp-clone
12 rm -rf $DIR
20 # Checkout and track the gh-pages branch
21 git checkout -t origin/gh-pages
24 rm -rf *
27 curl -L "https://search.maven.org/remote_content?g=$GROUP_ID&a=$ARTIFACT_ID&v=LATEST&c=javadoc" > j…
33 git add -u
34 git commit -m "Website at $(date)"
37 git push origin gh-pages
[all …]
/external/python/pyfakefs/.github/workflows/
Dbuilddocs.yml13 runs-on: ${{ matrix.os }}
16 os: [ubuntu-latest]
17 python-version: [3.8]
19 - name: Checkout master
23 - name: Get last commit message
26 echo "LAST_COMMIT=$(echo `git log -1 --pretty=%B`)" >> $GITHUB_ENV
28 - name: Install needed packages
33 sudo apt-get install python3-sphinx
36 - name: Checkout gh-pages
39 ref: gh-pages
[all …]
/external/grpc-grpc/tools/distrib/python/
Ddocgen.py8 # http://www.apache.org/licenses/LICENSE-2.0
28 '--config',
34 parser.add_argument('--submit', action='store_true')
35 parser.add_argument('--gh-user', type=str, help='GitHub user to push as.')
37 '--gh-repo-owner',
40 'defaults to --gh-user.'))
41 parser.add_argument('--doc-branch', type=str)
60 'CFLAGS': '-I{}'.format(INCLUDE_PATH),
61 'LDFLAGS': '-L{}'.format(LIBRARY_PATH),
73 'args': [VIRTUALENV_PIP_PATH, 'install', '--upgrade', 'pip==10.0.1'],
[all …]
/external/dagger2/.github/workflows/
Dci.yml6 - master
9 - master
19 validate-latest-dagger-version:
21 runs-on: ubuntu-latest
24 # runs of the same job. See https://github.com/google/go-github/pull/1821
25 - name: Cancel previous
26 uses: styfle/cancel-workflow-action@0.8.0
29 - name: 'Check out gh-pages repository'
32 ref: 'refs/heads/gh-pages'
33 path: gh-pages
[all …]
/external/rust/crates/grpcio-sys/grpc/tools/distrib/docgen/
Dall_lang_docgen.sh8 # http://www.apache.org/licenses/LICENSE-2.0
23 # tools/distrib/docgen/all_lang-docgen.sh YOUR_GITHUB_USERNAME
27 # tools/distrib/docgen/all_lang-docgen.sh
30 set -e
33 GRPC_VERSION="$(grep -m1 -Eo ' version: .*' build_handwritten.yaml | grep -Eo '[0-9][^ ]*')"
37 if [ $# -eq 0 ]; then
38 read -r -p "- Are you sure to generate documents without pushing to GitHub? [y/N] " response
46 if [ $# -eq 1 ]; then
55 git diff --exit-code
56 git submodule update --init --recursive
[all …]
/external/fonttools/Doc/
DREADME.md9 - [How to Build Local Documentation](#how-to-build-local-documentation)
10 - [Contributing to the fontTools Documentation](#contributing-to-the-documentation)
11 - [Documentation License](#documentation-license)
22 $ pip install -e . [all]
23 $ pip install -r Doc/docs-requirements.txt
37 $ sphinx-build -b html source build
48 …e Google Style Guide](https://github.com/google/styleguide/blob/gh-pages/pyguide.md#381-docstrings…
83 …[Google Style Guide](https://github.com/google/styleguide/blob/gh-pages/pyguide.md) (CC BY-SA 3.0)*
107 …[Google Style Guide](https://github.com/google/styleguide/blob/gh-pages/pyguide.md) (CC BY-SA 3.0)*
121 … documentation is released under a [CC BY-SA 4.0 International License](https://creativecommons.or…
/external/rust/crates/grpcio-sys/grpc/tools/distrib/python/
Ddocgen.py8 # http://www.apache.org/licenses/LICENSE-2.0
28 parser.add_argument('--repo-owner',
31 parser.add_argument('--doc-branch',
33 default='python-doc-%s' % grpc_version.VERSION)
51 ['python3', '-m', 'virtualenv', VIRTUALENV_DIR],
55 [PYTHON_PATH, '-m', 'pip', 'install', '--upgrade', 'pip==19.3.1'],
56 [PYTHON_PATH, '-m', 'pip', 'install', '-r', REQUIREMENTS_PATH],
57 [PYTHON_PATH, '-m', 'pip', 'install', '--upgrade', 'Sphinx'],
67 print('-' * tty_width)
73 # Create a temporary directory out of tree, checkout gh-pages from the
[all …]
/external/iperf3/docs/_esnet/
DREADME.rst1 esnet-gh-pages-base
4 Base templates for ESnet's GitHub pages. These pages are created using the
5 Sphinx_ documentation package using the sphinx-bootstrap-theme_ with some
6 pages. This repo is meant to be included into a project using git subtree and
9 .. _Sphinx: http://sphinx-doc.org
10 .. _sphinx-bootstrap-theme: https://github.com/ryan-roemer/sphinx-bootstrap-theme
13 ------------
15 1. Install Sphinx and sphinx-bootstrap-theme. See the instructions below for
19 4. ``git subtree add --prefix docs/_esnet https://github.com/esnet/esnet-gh-pages-base.git master -…
21 6. ``sphinx-quickstart``
[all …]
/external/rust/cxx/.github/workflows/
Dsite.yml6 - master
8 - book/**
9 - .github/workflows/site.yml
14 runs-on: ubuntu-latest
16 - uses: actions/checkout@v2
18 - name: Get mdBook
21 export MDBOOK_TARBALL="mdbook-${MDBOOK_VERSION}-x86_64-unknown-linux-gnu.tar.gz"
23 curl -Lf "${MDBOOK_URL}" | tar -xzC book
24 book/mdbook --version
26 - name: Build
[all …]
/external/rust/crates/cfg-if/.github/workflows/
Dmain.yml7 runs-on: ubuntu-latest
12 - uses: actions/checkout@master
13 - name: Install Rust Stable
18 rustc -vV
19 - name: Run tests
24 runs-on: ubuntu-latest
26 - uses: actions/checkout@master
27 - name: Install Rust Stable
32 - name: Run rustfmt
33 run: cargo fmt -- --check
[all …]
/external/harfbuzz_ng/.github/workflows/
Dlinux-ci.yml1 name: linux-ci
11 runs-on: ubuntu-18.04
14 - uses: actions/checkout@v2
15 - name: install dependencies
16-get install pkg-config gcc gcovr gtk-doc-tools libfreetype6-dev libglib2.0-dev libcairo2-dev libi…
17 - run: sudo pip3 install fonttools meson==0.56.0
18 - name: run
19 …run: meson build -Db_coverage=true --auto-features=enabled -Dgraphite=enabled -Dchafa=disabled -Dr…
20 - name: ci
21 run: meson test --print-errorlogs -Cbuild
[all …]
/external/rust/crates/coset/scripts/
Dbuild-gh-pages.sh8 # http://www.apache.org/licenses/LICENSE-2.0
16 set -o errexit
17 set -o nounset
18 set -o xtrace
19 set -o pipefail
21 # Update the gh-pages branch. Note that `cargo doc` is **not deterministic** so
23 readonly RUST_BRANCH=${1:-main}
24 readonly RUST_GH_BRANCH=gh-pages
26 if [ -z "${FORCE+x}" ]; then
27 …readonly PREV_COMMIT=$(git log --oneline -n 1 ${RUST_GH_BRANCH} | sed 's/.*branch at \([0-9a-f]*\)…
[all …]
/external/grpc-grpc-java/
DRELEASING.md5 ------------------
7 - Ubuntu 14.04 with Docker 13.03.0 that runs CentOS 6.9
8 - Windows 7 64-bit with Visual Studio
9 - Mac OS X 10.12.6
14 -------------
20 - Follow the instructions on [this
21 page](http://central.sonatype.org/pages/ossrh-guide.html) to set up an
23 - You only need to create the account, not set up a new project
24 - Contact a gRPC maintainer to add your account after you have created it.
27 ----------------
[all …]
/external/google-styleguide/
DREADME.md4 Every major open-source project has its own style guide: a set of conventions
16 This project holds the [C++ Style Guide][cpp], [Objective-C Style Guide][objc],
22 and [google-c-style.el][emacs], an Emacs settings file for Google style.
29 The style guides in this project are licensed under the CC-By 3.0 License,
36 …mons.org/licenses/by/3.0/"><img alt="Creative Commons License" style="border-width:0" src="https:/…
46 [angular]: https://google.github.io/styleguide/angularjs-google-style.html
49 [cpplint]: https://github.com/google/styleguide/tree/gh-pages/cpplint
50 [emacs]: https://raw.githubusercontent.com/google/styleguide/gh-pages/google-c-style.el
53 [dart]: https://www.dartlang.org/guides/language/effective-dart
/external/minijail/
DHACKING.md17 $ sudo ./minijail0.sh -u ${USER} -g 5000 -- /usr/bin/id
20 For system-wide usage, install `libminijail.so` and `libminijailpreload.so` to
31 googletest-release-1.8.0/
49 ….kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/Documentation/process/coding-style.rst
50 * Utility functions with no side-effects should go in `util.{h|c}`.
62 ### Man Pages
64 For users of Minijail (e.g. `minijail0`), we use man pages.
65 For style guides, check out the [Linux man-pages project] for general guidance.
68 * [man-pages(7)](http://man7.org/linux/man-pages/man7/man-pages.7.html)
69 * [groff-man(7)](http://man7.org/linux/man-pages/man7/groff_man.7.html)
[all …]

1234