Un-disable github actions :]

This commit is contained in:
Roman Lebedev 2021-06-01 13:01:49 +03:00
parent 604112c2d5
commit f10b9c0cb3
No known key found for this signature in database
GPG Key ID: 083C3EBB4A1689E0
6 changed files with 12 additions and 10 deletions

View File

@ -19,7 +19,7 @@ jobs:
path: "~/.cache/bazel"
key: ${{ env.cache-name }}-${{ runner.os }}-${{ github.ref }}
restore-keys: |
${{ env.cache-name }}-${{ runner.os }}-master
${{ env.cache-name }}-${{ runner.os }}-main
- name: build
run: |

View File

@ -2,9 +2,9 @@ name: build-and-test-perfcounters
on:
push:
branches: [ master ]
branches: [ main ]
pull_request:
branches: [ master ]
branches: [ main ]
jobs:
job:

View File

@ -1,8 +1,10 @@
name: build-and-test
on:
push: {}
pull_request: {}
push:
branches: [main]
pull_request:
branches: [main]
jobs:
# TODO: add 32-bit builds (g++ and clang++) for ubuntu

View File

@ -2,9 +2,9 @@ name: pylint
on:
push:
branches: [ master ]
branches: [ main ]
pull_request:
branches: [ master ]
branches: [ main ]
jobs:
pylint:

View File

@ -2,9 +2,9 @@ name: test-bindings
on:
push:
branches: [master]
branches: [main]
pull_request:
branches: [master]
branches: [main]
jobs:
python_bindings:

View File

@ -1,6 +1,6 @@
# How to release
* Make sure you're on master and synced to HEAD
* Make sure you're on main and synced to HEAD
* Ensure the project builds and tests run (sanity check only, obviously)
* `parallel -j0 exec ::: test/*_test` can help ensure everything at least
passes