ci: bump codecov (#6638)

This commit is contained in:
Marko 2020-07-08 11:03:23 +02:00 committed by GitHub
parent 3de1c7d4fd
commit e50c8df10c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 31 additions and 29 deletions

View File

@ -26,19 +26,19 @@ jobs:
# cache multiple
- uses: actions/upload-artifact@v2
with:
name: '${{ github.sha }}-aa'
name: "${{ github.sha }}-aa"
path: ./xaa.txt
- uses: actions/upload-artifact@v2
with:
name: '${{ github.sha }}-ab'
name: "${{ github.sha }}-ab"
path: ./xab.txt
- uses: actions/upload-artifact@v2
with:
name: '${{ github.sha }}-ac'
name: "${{ github.sha }}-ac"
path: ./xac.txt
- uses: actions/upload-artifact@v2
with:
name: '${{ github.sha }}-ad'
name: "${{ github.sha }}-ad"
path: ./xad.txt
test-coverage-run-1:
@ -56,7 +56,7 @@ jobs:
.sum
- uses: actions/download-artifact@v2
with:
name: '${{ github.sha }}-aa'
name: "${{ github.sha }}-aa"
if: "env.GIT_DIFF != ''"
- name: test & coverage report creation
run: |
@ -73,7 +73,7 @@ jobs:
sed -i.bak "/$(echo $filename | sed 's/\//\\\//g')/d" coverage.txt
done
if: "env.GIT_DIFF != ''"
- uses: codecov/codecov-action@v1
- uses: codecov/codecov-action@v1.0.10
with:
file: ./coverage.txt
fail_ci_if_error: true
@ -94,7 +94,7 @@ jobs:
.sum
- uses: actions/download-artifact@v2
with:
name: '${{ github.sha }}-ab'
name: "${{ github.sha }}-ab"
if: "env.GIT_DIFF != ''"
- name: test & coverage report creation
run: |
@ -111,7 +111,7 @@ jobs:
sed -i.bak "/$(echo $filename | sed 's/\//\\\//g')/d" coverage.txt
done
if: "env.GIT_DIFF != ''"
- uses: codecov/codecov-action@v1
- uses: codecov/codecov-action@v1.0.10
with:
file: ./coverage.txt
fail_ci_if_error: true
@ -132,7 +132,7 @@ jobs:
.sum
- uses: actions/download-artifact@v2
with:
name: '${{ github.sha }}-ac'
name: "${{ github.sha }}-ac"
if: "env.GIT_DIFF != ''"
- name: test & coverage report creation
run: |
@ -149,7 +149,7 @@ jobs:
sed -i.bak "/$(echo $filename | sed 's/\//\\\//g')/d" coverage.txt
done
if: "env.GIT_DIFF != ''"
- uses: codecov/codecov-action@v1
- uses: codecov/codecov-action@v1.0.10
with:
file: ./coverage.txt
fail_ci_if_error: true
@ -170,7 +170,7 @@ jobs:
.sum
- uses: actions/download-artifact@v2
with:
name: '${{ github.sha }}-ad'
name: "${{ github.sha }}-ad"
if: "env.GIT_DIFF != ''"
- name: test & coverage report creation
run: |
@ -187,7 +187,7 @@ jobs:
sed -i.bak "/$(echo $filename | sed 's/\//\\\//g')/d" coverage.txt
done
if: "env.GIT_DIFF != ''"
- uses: codecov/codecov-action@v1
- uses: codecov/codecov-action@v1.0.10
with:
file: ./coverage.txt
fail_ci_if_error: true

View File

@ -44,6 +44,7 @@ func (cdc DefaultPublicKeyCodec) Decode(key *types.PublicKey) (crypto.PubKey, er
}
var res sr25519.PubKeySr25519
copy(res[:], key.Sr25519)
return res, nil
case *types.PublicKey_Multisig:
pubKeys := key.Multisig.PubKeys
@ -55,6 +56,7 @@ func (cdc DefaultPublicKeyCodec) Decode(key *types.PublicKey) (crypto.PubKey, er
}
resKeys[i] = dk
}
return multisig.NewPubKeyMultisigThreshold(int(key.Multisig.K), resKeys), nil
default:
return nil, fmt.Errorf("can't decode PubKey of type %T. Use a custom PublicKeyCodec instead", key)