Skip to content

Commit 3203cab

Browse files
authored
migrate to github actions (#136)
* migrate to github actions * add failure step * add missing FIXME codes
1 parent 83c92d3 commit 3203cab

File tree

5 files changed

+47
-47
lines changed

5 files changed

+47
-47
lines changed

.github/workflows/build-and-test.yml

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
name: Continuous Integration
2+
on:
3+
push:
4+
pull_request:
5+
schedule:
6+
- cron: '42 15 * * *'
7+
jobs:
8+
build:
9+
name: HHVM ${{matrix.hhvm}} - ${{matrix.os}}
10+
strategy:
11+
# Run tests on all OS's and HHVM versions, even if one fails
12+
fail-fast: false
13+
matrix:
14+
os: [ ubuntu ]
15+
hhvm:
16+
- '4.80'
17+
- latest
18+
- nightly
19+
runs-on: ${{matrix.os}}-latest
20+
steps:
21+
- uses: actions/checkout@v2
22+
- uses: hhvm/actions/hack-lint-test@master
23+
with:
24+
hhvm: ${{matrix.hhvm}}
25+
# Check the codegen hasn't been modified; this is also done as part of the
26+
# next step, but we want to make sure the verify-signatures executable works
27+
- name: Test bin/hh-codegen-verify-signatures
28+
run: |
29+
bin/hh-codegen-verify-signatures \
30+
examples/dorm/demo/{DormUser.php,DormUserMutator.php}
31+
- name: Verify generated examples are up-to-date
32+
run: |
33+
hhvm examples/dorm/codegen.hack examples/dorm/demo/DormUserSchema.php
34+
if ! git diff --exit-code examples/; then
35+
echo "Demo codegen not up to date."
36+
exit 1
37+
fi
38+
- name: Test bin/hh-codegen-verify-signatures failure
39+
run: |
40+
echo >> examples/dorm/demo/DormUser.php
41+
if bin/hh-codegen-verify-signatures examples/dorm/demo/DormUser.php; then
42+
echo "bin/hh-codegen-verify-signatures should have failed!"
43+
exit 1
44+
fi

.hhconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ disallow_stringish_magic=true
1212
disallow_array_literal = true
1313
disallow_silence = true
1414
allowed_decl_fixme_codes=2053,4045
15-
allowed_fixme_codes_strict=2011,2049,2050,2053,4027,4045,4106,4107,4108,4110,4128,4135,4188,4240,4323
15+
allowed_fixme_codes_strict=2011,2049,2050,2053,4027,4045,4106,4107,4108,4110,4128,4135,4188,4240,4323,4390,4401

.travis.sh

-30
This file was deleted.

.travis.yml

-14
This file was deleted.

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Hack Codegen is a library for programatically generating Hack code",
44
"keywords": ["code generation", "Hack"],
55
"require": {
6-
"hhvm": "^4.58",
6+
"hhvm": "^4.80",
77
"hhvm/hhvm-autoload": "^2.0|^3.0",
88
"hhvm/hsl": "^4.0"
99
},
@@ -36,7 +36,7 @@
3636
"hhvm/hacktest": "^2.0",
3737
"hhvm/type-assert": "^3.1|^4.0",
3838
"facebook/fbexpect": "^2.6.1",
39-
"hhvm/hhast": "^4.0",
39+
"hhvm/hhast": "^4.80",
4040
"facebook/difflib": "^1.0"
4141
}
4242
}

0 commit comments

Comments
 (0)