mirror of https://github.com/vacp2p/nim-quic.git
Workaround for CI failure on Windows
This commit is contained in:
parent
bf524cf70f
commit
a4a802b97d
|
@ -12,6 +12,16 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: iffy/install-nim@v3
|
||||
|
||||
# workaround for https://github.com/iffy/install-nim/issues/11
|
||||
- name: Workaround SSL error with choosenim
|
||||
run: |
|
||||
curl -fO https://curl.se/ca/cacert.pem
|
||||
install cacert.pem ~/.nimble/bin
|
||||
ls ~/.nimble/bin
|
||||
shell: bash
|
||||
if: runner.os == 'Windows'
|
||||
|
||||
- name: Build
|
||||
run: nimble install -y
|
||||
- name: Test
|
||||
|
|
Loading…
Reference in New Issue