File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -23,10 +23,6 @@ inputs:
2323 description : " Text to place before the command such as `arch -arm64` for non-native macOS runners."
2424 required : false
2525 default : " "
26- do-system-installs :
27- description : " Skip python package installation and just do pip install."
28- required : false
29- default : " false"
3026
3127runs :
3228 using : " composite"
3733 env :
3834 INSTALL_PYTHON_VERSION : ${{ inputs.python-version }}
3935 run : |
40- ${{ inputs.command-prefix }} sh install.sh ${{ inputs.development == 'true' && '-d' || '' }} ${{ (inputs.editable != 'true') && '-i' || '' }} ${{ inputs.automated == 'true' && '-a' || '' }} ${{ (fromJSON(inputs.do-system-installs) != true) && '-s' || '' }}
36+ ${{ inputs.command-prefix }} sh install.sh ${{ inputs.development == 'true' && '-d' || '' }} ${{ (inputs.editable != 'true') && '-i' || '' }} ${{ inputs.automated == 'true' && '-a' || '' }}
4137
4238 - name : Run install script (Windows)
4339 if : runner.os == 'windows'
Original file line number Diff line number Diff line change 7474 with :
7575 python-version : ${{ matrix.python.version }}
7676
77- - name : Create keychain for CI use (macOS)
78- if : matrix.os.platform == 'macos'
79- run : |
80- security create-keychain -p foo chiachain
81- security default-keychain -s chiachain
82- security unlock-keychain -p foo chiachain
83- security set-keychain-settings -t 7200 -u chiachain
84-
85- - name : Cache npm (Ubuntu)
86- if : matrix.os.platform == 'ubuntu'
87- uses : actions/cache@v4
88- env :
89- SEGMENT_DOWNLOAD_TIMEOUT_MIN : 1
90- with :
91- path : ~/.npm
92- key : ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
93- restore-keys : |
94- ${{ runner.os }}-node-
95-
9677 - uses : chia-network/actions/cache-pip@main
9778 with :
9879 mode : poetry
You can’t perform that action at this time.
0 commit comments