why can't i see this action now?

This commit is contained in:
Floris Bruynooghe
2023-02-16 14:49:04 +01:00
parent f9f9bc3efb
commit 7a9f497aa7

View File

@@ -84,58 +84,58 @@ jobs:
- name: Tests - name: Tests
run: cargo test --workspace run: cargo test --workspace
# - name: Test cargo vendor - name: Test cargo vendor
# run: cargo vendor run: cargo vendor
# - name: Install python - name: Install python
# if: ${{ matrix.python }} if: ${{ matrix.python }}
# uses: actions/setup-python@v4 uses: actions/setup-python@v4
# with: with:
# python-version: ${{ matrix.python }} python-version: ${{ matrix.python }}
# - name: Install tox - name: Install tox
# if: ${{ matrix.python }} if: ${{ matrix.python }}
# run: pip install tox run: pip install tox
# - name: Build C library - name: Build C library
# if: ${{ matrix.python }} if: ${{ matrix.python }}
# run: cargo build -p deltachat_ffi --features jsonrpc run: cargo build -p deltachat_ffi --features jsonrpc
# - name: Run python tests - name: Run python tests
# if: ${{ matrix.python }} if: ${{ matrix.python }}
# env: env:
# DCC_NEW_TMP_EMAIL: ${{ secrets.DCC_NEW_TMP_EMAIL }} DCC_NEW_TMP_EMAIL: ${{ secrets.DCC_NEW_TMP_EMAIL }}
# DCC_RS_TARGET: debug DCC_RS_TARGET: debug
# DCC_RS_DEV: ${{ github.workspace }} DCC_RS_DEV: ${{ github.workspace }}
# working-directory: python working-directory: python
# run: tox -e lint,mypy,doc,py3 run: tox -e lint,mypy,doc,py3
# - name: Build deltachat-rpc-server - name: Build deltachat-rpc-server
# if: ${{ matrix.python }} if: ${{ matrix.python }}
# run: cargo build -p deltachat-rpc-server run: cargo build -p deltachat-rpc-server
# - name: Add deltachat-rpc-server to path - name: Add deltachat-rpc-server to path
# if: ${{ matrix.python }} if: ${{ matrix.python }}
# run: echo ${{ github.workspace }}/target/debug >> $GITHUB_PATH run: echo ${{ github.workspace }}/target/debug >> $GITHUB_PATH
# - name: Run deltachat-rpc-client tests - name: Run deltachat-rpc-client tests
# if: ${{ matrix.python }} if: ${{ matrix.python }}
# env: env:
# DCC_NEW_TMP_EMAIL: ${{ secrets.DCC_NEW_TMP_EMAIL }} DCC_NEW_TMP_EMAIL: ${{ secrets.DCC_NEW_TMP_EMAIL }}
# working-directory: deltachat-rpc-client working-directory: deltachat-rpc-client
# run: tox -e py3,lint run: tox -e py3,lint
# - name: Install pypy - name: Install pypy
# if: ${{ matrix.python }} if: ${{ matrix.python }}
# uses: actions/setup-python@v4 uses: actions/setup-python@v4
# with: with:
# python-version: 'pypy${{ matrix.python }}' python-version: 'pypy${{ matrix.python }}'
# - name: Run pypy tests - name: Run pypy tests
# if: ${{ matrix.python }} if: ${{ matrix.python }}
# env: env:
# DCC_NEW_TMP_EMAIL: ${{ secrets.DCC_NEW_TMP_EMAIL }} DCC_NEW_TMP_EMAIL: ${{ secrets.DCC_NEW_TMP_EMAIL }}
# DCC_RS_TARGET: debug DCC_RS_TARGET: debug
# DCC_RS_DEV: ${{ github.workspace }} DCC_RS_DEV: ${{ github.workspace }}
# working-directory: python working-directory: python
# run: tox -e pypy3 run: tox -e pypy3