Skip to content

Commit

Permalink
Merge branch 'main' into fc.cleanup_dl_unsub
Browse files Browse the repository at this point in the history
  • Loading branch information
fchirica committed Sep 5, 2023
2 parents c2e326d + 7df9599 commit f63dee7
Show file tree
Hide file tree
Showing 92 changed files with 2,563 additions and 1,686 deletions.
6 changes: 5 additions & 1 deletion .github/actions/install/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ inputs:
description: "Text to place before the command such as `arch -arm64` for non-native macOS runners."
required: false
default: ""
do-system-installs:
description: "Skip python package installation and just do pip install."
required: false
default: "false"

runs:
using: "composite"
Expand All @@ -37,7 +41,7 @@ runs:
env:
INSTALL_PYTHON_VERSION: ${{ inputs.python-version }}
run: |
${{ inputs.command-prefix }} sh install.sh ${{ inputs.development && '-d' || '' }} ${{ (inputs.editable != 'true') && '-i' || '' }} ${{ inputs.legacy_keyring && '-l' || '' }} ${{ inputs.automated == 'true' && '-a' || '' }}
${{ inputs.command-prefix }} sh install.sh ${{ inputs.development && '-d' || '' }} ${{ (inputs.editable != 'true') && '-i' || '' }} ${{ inputs.legacy_keyring && '-l' || '' }} ${{ inputs.automated == 'true' && '-a' || '' }} ${{ (fromJSON(inputs.do-system-installs) != true) && '-s' || '' }}
- name: Run install script (Windows)
if: runner.os == 'windows'
Expand Down
290 changes: 0 additions & 290 deletions .github/workflows/build-linux-arm64-installer.yml

This file was deleted.

Loading

0 comments on commit f63dee7

Please sign in to comment.