Skip to content

Commit 363191f

Browse files
authored
Migrate to Nix & GH Actions (#95)
1 parent 75d2a2e commit 363191f

File tree

222 files changed

+157
-13613
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

222 files changed

+157
-13613
lines changed

.circleci/config.yml

Lines changed: 0 additions & 218 deletions
This file was deleted.

.github/workflows/test.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: "Build"
2+
on:
3+
pull_request:
4+
push:
5+
jobs:
6+
tests:
7+
runs-on: ubuntu-latest
8+
strategy:
9+
matrix:
10+
ocamlVersion: [406, 407, 408, 409]
11+
steps:
12+
- uses: actions/checkout@v2
13+
- name: Checkout submodules
14+
shell: bash
15+
run: |
16+
# https://github.com/actions/checkout#checkout-submodules
17+
auth_header="$(git config --local --get http.https://github.com/.extraheader)"
18+
git submodule sync --recursive
19+
git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive --depth=1
20+
- uses: cachix/install-nix-action@v6
21+
- uses: cachix/cachix-action@v3
22+
with:
23+
name: anmonteiro
24+
file: nix/ci/${{ matrix.ocamlVersion }}.nix
25+
signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}'
26+

.gitmodules

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[submodule "hpack/test/hpack-test-case"]
22
path = hpack/test/hpack-test-case
3-
url = git@github.com:http2jp/hpack-test-case.git
3+
url = https://github.com/http2jp/hpack-test-case.git
44
[submodule "lib_test/http2-frame-test-case"]
55
path = lib_test/http2-frame-test-case
6-
url = git@github.com:http2jp/http2-frame-test-case.git
6+
url = https://github.com/http2jp/http2-frame-test-case.git

esy.json

Lines changed: 0 additions & 59 deletions
This file was deleted.

esy.lock/.gitattributes

Lines changed: 0 additions & 3 deletions
This file was deleted.

esy.lock/.gitignore

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)