Skip to content

Commit

Permalink
ci: slowest first, ubuntu-22.04 (#88)
Browse files Browse the repository at this point in the history
* ci: test full example first

* ci: use ubuntu-22.04
  • Loading branch information
blueyed authored Oct 20, 2022
1 parent 9794879 commit a5af1b6
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,14 @@ on:
- master

jobs:
test_full_example:
name: Test full example
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- run: make build_example_for_test
- run: make --keep-going test_example

test_single:
# Single/simple build instructions to ensure e.g. that build deps for -py2
# do not implicitly fix -py3 builds (which might fail otherwise).
Expand Down Expand Up @@ -45,7 +53,7 @@ jobs:
m_args: -tag neovim:v0.8.0 -py3
- m_name: neovim-master
m_args: -tag neovim:master -py3 -ruby
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Build example for test
Expand All @@ -56,11 +64,3 @@ jobs:
EOF
make build_example_for_test
- run: make -C example test_vims_basic_test

test_full_example:
name: Test full example
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- run: make build_example_for_test
- run: make --keep-going test_example

0 comments on commit a5af1b6

Please sign in to comment.