Skip to content

Commit

Permalink
add CI file
Browse files Browse the repository at this point in the history
  • Loading branch information
wp19991 committed Jul 12, 2023
1 parent c6ccbdf commit 9a5a2de
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/unit_tests_for_protobuf4.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: test for protobuf4

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
run-unit-tests-on-for-protobuf4:

timeout-minutes: 60
runs-on: ubuntu-latest
container: docker.io/library/ubuntu:latest

steps:
- uses: actions/checkout@v2

- name: Install basic dependencies
run: |
apt-get update
apt-get install -yq wget gcc g++ python3.9 zlib1g-dev zip libuv1.dev
apt-get install -yq pip
- name: Install python dependencies
run: |
python3 -m pip install virtualenv
python3 -m virtualenv -p python3 py3
. py3/bin/activate
which python
pip install pytest torch cloudpickle cryptography
pip install "protobuf>=4.0"
pip install ray==2.4.0
- name: Build and test
run: |
. py3/bin/activate
pip install -e . -v
sh test.sh

0 comments on commit 9a5a2de

Please sign in to comment.