Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
pybind11_abseil
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open
pybind11_abseil
Commits
f882e1e5
Commit
f882e1e5
authored
Dec 21, 2020
by
pybind11_abseil authors
Committed by
Jean-Baptiste
Dec 22, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Internal change
PiperOrigin-RevId: 348518869
parent
add73a30
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
44 additions
and
0 deletions
+44
-0
.github/auto_assign-issues.yml
+0
-0
.github/workflows/actions.yml
+42
-0
README.md
+2
-0
No files found.
auto_assign-issues.yml
→
.github/
auto_assign-issues.yml
View file @
f882e1e5
File moved
.github/workflows/actions.yml
0 → 100644
View file @
f882e1e5
name
:
build_and_test
# Controls when the action will run.
on
:
# Triggers the workflow on push or pull request events but only for the master branch
push
:
branches
:
[
master
]
pull_request
:
branches
:
[
master
]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch
:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs
:
build
:
runs-on
:
ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps
:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
-
uses
:
actions/checkout@v2
# Runs a single command using the runners shell
-
name
:
Install Bazel
# Install Bazel, see https://docs.bazel.build/versions/master/install-ubuntu.html#step-1-install-required-packages
run
:
|
sudo apt install curl gnupg
curl -fsSL https://bazel.build/bazel-release.pub.gpg | gpg --dearmor > bazel.gpg
sudo mv bazel.gpg /etc/apt/trusted.gpg.d/
echo "deb [arch=amd64] https://storage.googleapis.com/bazel-apt stable jdk1.8" | sudo tee /etc/apt/sources.list.d/bazel.list
sudo apt update && sudo apt install bazel -y
-
name
:
Install virtualenv
run
:
|
sudo apt-get install python3-pip -y
sudo pip3 install virtualenv
# Runs a set of commands using the runners shell
-
name
:
Run tests
run
:
bash ./scripts/build_and_run_tests.sh
README.md
View file @
f882e1e5
# Pybind11 bindings for the Abseil C++ Common Libraries
# Pybind11 bindings for the Abseil C++ Common Libraries

[
TOC
]
[
TOC
]
## Overview
## Overview
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment