commented out circuitpython build instructions
This commit is contained in:
parent
b26c3754c5
commit
5a491d4c5d
1 changed files with 36 additions and 36 deletions
72
.github/workflows/build.yml
vendored
72
.github/workflows/build.yml
vendored
|
|
@ -46,39 +46,39 @@ jobs:
|
|||
- name: Run build.sh
|
||||
run: ./build.sh
|
||||
|
||||
circuitpython:
|
||||
strategy:
|
||||
matrix:
|
||||
os:
|
||||
- ubuntu-16.04
|
||||
- macos-10.14
|
||||
runs-on: ${{ matrix.os }}
|
||||
steps:
|
||||
- name: Dump GitHub context
|
||||
env:
|
||||
GITHUB_CONTEXT: ${{ toJson(github) }}
|
||||
run: echo "$GITHUB_CONTEXT"
|
||||
- name: Set up Python 3.5
|
||||
uses: actions/setup-python@v1
|
||||
with:
|
||||
python-version: 3.8
|
||||
|
||||
- name: Versions
|
||||
run: |
|
||||
gcc --version
|
||||
python3 --version
|
||||
|
||||
- name: Checkout ulab
|
||||
uses: actions/checkout@v1
|
||||
|
||||
- name: Install requirements
|
||||
run: |
|
||||
if type -path apt-get; then
|
||||
sudo apt-get install gettext
|
||||
else
|
||||
brew install gettext
|
||||
echo >>$GITHUB_PATH /usr/local/opt/gettext/bin
|
||||
fi
|
||||
|
||||
- name: Run build-cp.sh
|
||||
run: ./build-cp.sh
|
||||
# circuitpython:
|
||||
# strategy:
|
||||
# matrix:
|
||||
# os:
|
||||
# - ubuntu-16.04
|
||||
# - macos-10.14
|
||||
# runs-on: ${{ matrix.os }}
|
||||
# steps:
|
||||
# - name: Dump GitHub context
|
||||
# env:
|
||||
# GITHUB_CONTEXT: ${{ toJson(github) }}
|
||||
# run: echo "$GITHUB_CONTEXT"
|
||||
# - name: Set up Python 3.5
|
||||
# uses: actions/setup-python@v1
|
||||
# with:
|
||||
# python-version: 3.8
|
||||
#
|
||||
# - name: Versions
|
||||
# run: |
|
||||
# gcc --version
|
||||
# python3 --version
|
||||
#
|
||||
# - name: Checkout ulab
|
||||
# uses: actions/checkout@v1
|
||||
#
|
||||
# - name: Install requirements
|
||||
# run: |
|
||||
# if type -path apt-get; then
|
||||
# sudo apt-get install gettext
|
||||
# else
|
||||
# brew install gettext
|
||||
# echo >>$GITHUB_PATH /usr/local/opt/gettext/bin
|
||||
# fi
|
||||
#
|
||||
# - name: Run build-cp.sh
|
||||
# run: ./build-cp.sh
|
||||
|
|
|
|||
Loading…
Reference in a new issue