Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add an experiment file to be able to test new CI stuff on branches #731

Merged
merged 1 commit into from
Nov 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions .github/workflows/CI_experiment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# This is a basic workflow to help you get started with Actions

name: CI experiment

# Controls when the action will run.
on:
workflow_dispatch:

jobs:
checks:
runs-on: ubuntu-latest

steps:
# Checkout, fetch-depth=0 fetches the full repos (required for automatic versioning to work)
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Set up Python 3.12
uses: actions/setup-python@v4
with:
python-version: 3.12

- name: Check build and install
run: |
pip install setuptools
python3 setup.py sdist
pip install dist/*.tar.gz

- run: docker pull bitcraze/builder

- name: CI checks
run: docker run --rm -v ${PWD}:/module bitcraze/builder ./tools/build/build
Loading