Skip to content

Commit a6364d8

Browse files
committed
Fix the test workflow
1 parent c2a2ea3 commit a6364d8

2 files changed

Lines changed: 1 addition & 24 deletions

File tree

.github/actions/install/action.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff 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

3127
runs:
3228
using: "composite"
@@ -37,7 +33,7 @@ runs:
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'

.github/workflows/test.yml

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -74,25 +74,6 @@ jobs:
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

0 commit comments

Comments
 (0)