Skip to content

Commit

Permalink
update ci containers
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelkirk committed Feb 23, 2022
1 parent e9eab38 commit eea0065
Showing 1 changed file with 21 additions and 13 deletions.
34 changes: 21 additions & 13 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,20 @@ jobs:
- name: Mark the job as a failure
if: "!success()"
run: exit 1

proj-ubuntu:
name: proj ubuntu
if: "!contains(github.event.head_commit.message, '[skip ci]')"
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
container_image: ["georust/proj-ci:rust-1.52", "georust/proj-ci:rust-1.53"]
features:
container_image:
# Minimum supported rust (MSRV)
- "georust/proj-ci:rust-1.52"
# Latest stable rust
- "georust/proj-ci:rust-1.57"
features:
- ""
- "--features network"
- "--features bundled_proj"
Expand Down Expand Up @@ -73,33 +78,36 @@ jobs:
strategy:
matrix:
include:
- container:
image: georust/proj-ci:rust-1.53
env:
_PROJ_SYS_TEST_EXPECT_BUILD_FROM_SRC: 0
features: ""
# Minimum supported rust (MSRV)
- container:
image: georust/proj-ci:rust-1.52
env:
_PROJ_SYS_TEST_EXPECT_BUILD_FROM_SRC: 0
features: ""
- container:
image: georust/proj-ci:rust-1.53
image: georust/proj-ci:rust-1.52
env:
_PROJ_SYS_TEST_EXPECT_BUILD_FROM_SRC: 1
features: "--features bundled_proj"
- container:
image: georust/proj-ci:rust-1.52
image: georust/proj-ci-without-system-proj:rust-1.52
env:
_PROJ_SYS_TEST_EXPECT_BUILD_FROM_SRC: 1
features: "--features bundled_proj"
features: ""

# Latest stable rust
- container:
image: georust/proj-ci-without-system-proj:rust-1.53
image: georust/proj-ci:rust-1.57
env:
_PROJ_SYS_TEST_EXPECT_BUILD_FROM_SRC: 1
_PROJ_SYS_TEST_EXPECT_BUILD_FROM_SRC: 0
features: ""
- container:
image: georust/proj-ci-without-system-proj:rust-1.52
image: georust/proj-ci:rust-1.57
env:
_PROJ_SYS_TEST_EXPECT_BUILD_FROM_SRC: 1
features: "--features bundled_proj"
- container:
image: georust/proj-ci-without-system-proj:rust-1.57
env:
_PROJ_SYS_TEST_EXPECT_BUILD_FROM_SRC: 1
features: ""
Expand Down

0 comments on commit eea0065

Please sign in to comment.