Skip to content

Fix git command again #14

Fix git command again

Fix git command again #14

Workflow file for this run

name: Bootstrap
on:
push:
branches: [bootstrap]
pull_request:
branches: [bootstrap]
jobs:
build:
name: python ${{ matrix.python-version }} on ${{matrix.os}}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- {python-version: "3.10", os: ubuntu-latest}
steps:
- uses: actions/checkout@v2
- name: Set up python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade pip
run: |
python -m pip install --upgrade pip
- name: Install ebcc
run: |
python -m pip install wheel
python -m pip install -e .[dev]
- name: Install dependencies
run: |
python -m pip install git+https://github.com/obackhouse/albert@master
python -m pip install git+https://github.com/edeprince3/pdaggerq@master
python -m pip install git+https://github.com/tschijnmo/drudge@master
python -m pip install git+https://github.com/obackhouse/gristmill@master
python -m pip install git+https://github.com/tschijnmo/DummyRDD@master
- name: Bootstrap
env:
PYTHONWARNINGS: "ignore"
run: |
git fetch --all
git pull origin bootstrap
git pull origin bootstrap_ci
git checkout bootstrap_ci
git merge bootstrap
chmod +x .github/workflows/bootstrap_all.sh
cd ebcc/codegen && ./../../.github/workflows/bootstrap_all.sh
git config --global user.name "github-actions[bot]"
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
git add *.py
git commit -m "Bootstrap via ${{ github.sha }}"
git push origin bootstrap_ci
- name: Run unit tests
run: |
python -m pip install pytest
pytest