Skip to content

Commit

Permalink
update ci containers
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelkirk committed Mar 9, 2022
1 parent 21b0247 commit bed17eb
Showing 1 changed file with 20 additions and 12 deletions.
32 changes: 20 additions & 12 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,19 @@ 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"]
container_image:
# Minimum supported rust (MSRV)
- "georust/proj-ci:rust-1.52"
# Latest stable rust
- "georust/proj-ci:rust-1.59"
features:
- ""
- "--features network"
Expand Down Expand Up @@ -80,33 +85,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.59
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.59
env:
_PROJ_SYS_TEST_EXPECT_BUILD_FROM_SRC: 1
features: "--features bundled_proj"
- container:
image: georust/proj-ci-without-system-proj:rust-1.59
env:
_PROJ_SYS_TEST_EXPECT_BUILD_FROM_SRC: 1
features: ""
Expand Down

0 comments on commit bed17eb

Please sign in to comment.