File tree Expand file tree Collapse file tree 1 file changed +17
-3
lines changed Expand file tree Collapse file tree 1 file changed +17
-3
lines changed Original file line number Diff line number Diff line change @@ -101,8 +101,22 @@ jobs:
101
101
mkdir -p $GITHUB_WORKSPACE/channel/linux-64
102
102
mv ${PACKAGE_NAME}-*.conda $GITHUB_WORKSPACE/channel/linux-64
103
103
conda index $GITHUB_WORKSPACE/channel
104
- # Test channel
105
- conda search $PACKAGE_NAME -c $GITHUB_WORKSPACE/channel --override-channels
104
+
105
+ - name : Test conda channel
106
+ run : |
107
+ conda search $PACKAGE_NAME -c $GITHUB_WORKSPACE/channel --override-channels --info --json > $GITHUB_WORKSPACE/ver.json
108
+ echo "Listing workspace:"
109
+ ls -la
110
+ cat $GITHUB_WORKSPACE/ver.json
111
+
112
+ - name : Get package version
113
+ run : |
114
+ echo "Listing workspace:"
115
+ ls -la
116
+ echo "Checking in GITHUB_WORKSPACE:"
117
+ ls -la "$GITHUB_WORKSPACE"
118
+ export PACKAGE_VERSION=$(python -c "${{ env.VER_SCRIPT1 }} ${{ env.VER_SCRIPT2 }}")
119
+ echo PACKAGE_VERSION=${PACKAGE_VERSION}
106
120
107
121
- name : Collect dependencies
108
122
run : |
@@ -132,7 +146,7 @@ jobs:
132
146
run : |
133
147
CHANNELS="-c $GITHUB_WORKSPACE/channel ${{ env.CHANNELS }}"
134
148
conda create -n ${{ env.TEST_ENV_NAME }} python=${{ matrix.python }} "scipy>=1.10" $CHANNELS
135
- conda install -n ${{ env.TEST_ENV_NAME }} $PACKAGE_NAME pytest $CHANNELS
149
+ conda install -n ${{ env.TEST_ENV_NAME }} $PACKAGE_NAME=$PACKAGE_VERSION pytest $CHANNELS
136
150
# Test installed packages
137
151
conda list -n ${{ env.TEST_ENV_NAME }}
138
152
You can’t perform that action at this time.
0 commit comments