ci: show jq version in toml_ci.yml
parent
d5b111ec99
commit
3aba840af1
|
@ -17,8 +17,8 @@ jobs:
|
||||||
TOML_BS_TESTS_PINNED_COMMIT: eb989e5
|
TOML_BS_TESTS_PINNED_COMMIT: eb989e5
|
||||||
TOML_IARNA_TESTS_PATH: vlib/toml/tests/testdata/iarna/toml-test
|
TOML_IARNA_TESTS_PATH: vlib/toml/tests/testdata/iarna/toml-test
|
||||||
TOML_IARNA_TESTS_PINNED_COMMIT: 1880b1a
|
TOML_IARNA_TESTS_PINNED_COMMIT: 1880b1a
|
||||||
TOML_ALEXCRICHTON_TESTS_PATH: vlib/toml/tests/testdata/alexcrichton/toml-test
|
TOML_AC_TESTS_PATH: vlib/toml/tests/testdata/alexcrichton/toml-test
|
||||||
TOML_ALEXCRICHTON_TESTS_PINNED_COMMIT: 499e8c4
|
TOML_AC_TESTS_PINNED_COMMIT: 499e8c4
|
||||||
steps:
|
steps:
|
||||||
|
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
@ -29,6 +29,9 @@ jobs:
|
||||||
- name: Build V
|
- name: Build V
|
||||||
run: make -j2 && ./v -cc gcc -o v cmd/v
|
run: make -j2 && ./v -cc gcc -o v cmd/v
|
||||||
|
|
||||||
|
- name: Show JQ Version
|
||||||
|
run: jq --version
|
||||||
|
|
||||||
- name: Run local TOML tests
|
- name: Run local TOML tests
|
||||||
run: ./v test vlib/toml
|
run: ./v test vlib/toml
|
||||||
|
|
||||||
|
@ -62,9 +65,9 @@ jobs:
|
||||||
# Tests found at https://github.com/alexcrichton/toml-rs
|
# Tests found at https://github.com/alexcrichton/toml-rs
|
||||||
- name: Clone alexcrichton/toml-rs
|
- name: Clone alexcrichton/toml-rs
|
||||||
run: |
|
run: |
|
||||||
git clone https://github.com/alexcrichton/toml-rs.git $TOML_ALEXCRICHTON_TESTS_PATH
|
git clone https://github.com/alexcrichton/toml-rs.git $TOML_AC_TESTS_PATH
|
||||||
## TODO: update/remove this pinning once all our skip lists are empty:
|
## TODO: update/remove this pinning once all our skip lists are empty:
|
||||||
git -C $TOML_ALEXCRICHTON_TESTS_PATH checkout $TOML_ALEXCRICHTON_TESTS_PINNED_COMMIT
|
git -C $TOML_ALEXCRICHTON_TESTS_PATH checkout $TOML_AC_TESTS_PINNED_COMMIT
|
||||||
|
|
||||||
- name: Run alexcrichton TOML tests
|
- name: Run alexcrichton TOML tests
|
||||||
run: ./v vlib/toml/tests/alexcrichton.toml-rs-tests_test.v
|
run: ./v vlib/toml/tests/alexcrichton.toml-rs-tests_test.v
|
||||||
|
|
Loading…
Reference in New Issue