Skip to content

Commit bba29e9

Browse files
authored
ci: Fix OpenSSL path, add repository_dispatch trigger (#271)
Add a repository_dispatch trigger to CI. Fix path to OpenSSL for macos-latest in GitHub Actions. Signed-off-by: Spencer Wilson <spencer.wilson@uwaterloo.ca>
1 parent 07e5690 commit bba29e9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
on: [push, pull_request, merge_group]
1+
on: [push, pull_request, merge_group, repository_dispatch]
22

33
name: Continuous integration
44

@@ -45,7 +45,7 @@ jobs:
4545

4646
- name: Set OPENSSL_ROOT_DIR
4747
if: startsWith(matrix.os, 'macos')
48-
run: echo "OPENSSL_ROOT_DIR=/usr/local/opt/openssl@1.1" >> $GITHUB_ENV
48+
run: echo "OPENSSL_ROOT_DIR=$(brew --prefix openssl)" >> $GITHUB_ENV
4949

5050
- name: Install Rust
5151
run: |

0 commit comments

Comments
 (0)