Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ on:

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: build
Expand All @@ -27,9 +32,7 @@ jobs:
-nodes \
-out cert.pem \
-keyout key.pem \
-subj "/C=US/ST=MN/L=Minneapolis/O=cosock/CN=cosock/" \
&& sudo cp cert.pem /usr/local/share/ca-certificates \
&& sudo update-ca-certificates
-subj "/C=US/ST=MN/L=Minneapolis/O=cosock/CN=cosock/"
- name: run-with-tls
run: |
./target/debug/cosock-test-server 8443 . &
Expand Down
2 changes: 1 addition & 1 deletion dist-workspace.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ci = "github"
# The installers to generate for each app
installers = ["shell"]
# Target platforms to build apps for (Rust target-triple syntax)
targets = ["x86_64-unknown-linux-gnu"]
targets = [ "x86_64-unknown-linux-gnu", "aarch64-apple-darwin" ]
# Path that installers should place binaries in
install-path = "CARGO_HOME"
# Whether to install an updater program
Expand Down
Loading