Skip to content

Commit

Permalink
Merge pull request #2 from JuliaComputing/sf/add_ci
Browse files Browse the repository at this point in the history
Remove dependency on `openssl`
  • Loading branch information
staticfloat authored Nov 17, 2022
2 parents 9b6f630 + 6fe712e commit ff3bf62
Show file tree
Hide file tree
Showing 6 changed files with 178 additions and 120 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,13 @@ on:
tags:
- 'v*.*.*'

env:
USE_DOCKER: true

jobs:
style:
name: Check Style
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
Expand All @@ -35,7 +38,7 @@ jobs:
test:
name: Test
needs: [style]
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
Expand All @@ -59,7 +62,7 @@ jobs:
name: deploy
needs: [test]
if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
strategy:
matrix:
target: [ aarch64-unknown-linux-gnu, armv7-unknown-linux-gnueabihf, i686-unknown-linux-gnu, i686-unknown-linux-musl, powerpc64-unknown-linux-gnu, powerpc64le-unknown-linux-gnu, arm-unknown-linux-gnueabi, x86_64-unknown-linux-gnu, x86_64-unknown-linux-musl ]
Expand Down
Loading

0 comments on commit ff3bf62

Please sign in to comment.