Skip to content

Commit

Permalink
do not test 3.0.4 twice. its in ubuntu-lts
Browse files Browse the repository at this point in the history
  • Loading branch information
jdroenner committed Jan 18, 2022
1 parent b142b1e commit 4832a49
Showing 1 changed file with 0 additions and 48 deletions.
48 changes: 0 additions & 48 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -205,54 +205,6 @@ jobs:
command: test
args: ${{ matrix.features }} --verbose

gdal_30:
name: "ci gdal-304"
runs-on: ubuntu-latest
container:
image: osgeo/gdal:ubuntu-full-3.0.4

strategy:
matrix:
features: ["", "--all-features"]

steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install build deps
run: |
apt-get update -y
apt-get install build-essential pkg-config libclang-dev -y
- name: Setup building
run: |
export CC="clang-9"
export CXX="clang++-9"
- name: Install stable
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
components: rustfmt, clippy
- name: Check with Rustfmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
- name: Check with Clippy
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-targets ${{ matrix.features }} -- -D warnings
- name: Build
uses: actions-rs/cargo@v1
with:
command: build
args: ${{ matrix.features }} --verbose
- name: Run tests
uses: actions-rs/cargo@v1
with:
command: test
args: ${{ matrix.features }} --verbose

ubuntu_lts:
name: "ci ubuntu-lts"
runs-on: "ubuntu-20.04"
Expand Down

0 comments on commit 4832a49

Please sign in to comment.