Projects STRLCPY got-your-back Commits 3c9bce72
🤬
Revision indexing in progress... (symbol navigation in revisions will be accurate after indexed)
  • ■ ■ ■ ■ ■ ■
    .github/workflows/build.yml
    skipped 10 lines
    11 11   shell: bash
    12 12   
    13 13  env:
    14  - OPENSSL_CONFIG_OPTS: no-asm no-fips
     14 + OPENSSL_CONFIG_OPTS: no-fips
    15 15   OPENSSL_INSTALL_PATH: ${{ github.workspace }}/ssl
    16 16   OPENSSL_SOURCE_PATH: ${{ github.workspace }}/openssl
    17 17   PYTHON_INSTALL_PATH: ${{ github.workspace }}/python
    skipped 51 lines
    69 69   path: |
    70 70   ./ssl
    71 71   ./python
    72  - key: ${{ matrix.jid }}-20220606
     72 + key: ${{ matrix.jid }}-20220616
    73 73   
    74 74   - name: Use pre-compiled Python
    75 75   if: matrix.python != ''
    skipped 9 lines
    85 85   ACTIONS_GOAL: ${{ matrix.goal }}
    86 86   run: |
    87 87   export PYTHON=$(which python3)
    88  - export PIP=$(which pip3)
    89 88   export gyb="${PYTHON} -m gyb"
    90 89   export gybpath="$(readlink -e .)"
    91 90   echo -e "PYTHON: ${PYTHON}\nPIP: ${PIP}\ngyb: ${gyb}\ngybpath: ${gybpath}"
    92 91   echo "PYTHON=${PYTHON}" >> $GITHUB_ENV
    93  - echo "PIP=${PIP}" >> $GITHUB_ENV
    94 92   echo "gyb=${gyb}" >> $GITHUB_ENV
    95 93   echo "gybpath=${gybpath}" >> $GITHUB_ENV
    96 94   echo "JID=${JID}" >> $GITHUB_ENV
    skipped 217 lines
    314 312   - name: Install pip requirements
    315 313   run: |
    316 314   set +e
    317  - "${PYTHON}" -m pip list --outdated --format=freeze | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 $pip install -U --force-reinstall
     315 + "${PYTHON}" -m pip list --outdated --format=freeze | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 "${PYTHON}" -m pip install -U --force-reinstall
    318 316   "${PYTHON}" -m pip install --upgrade -r requirements.txt
    319 317   
    320 318   - name: Build GYB with PyInstaller
    skipped 155 lines
Please wait...
Page is in error, reload to recover