commented out circuitpython build instructions

This commit is contained in:
Zoltán Vörös 2021-01-15 16:25:06 +01:00
parent b26c3754c5
commit 5a491d4c5d

View file

@ -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