Skip to content

Commit

Permalink
ci: Get ready for the upcoming branch 'libpng18'
Browse files Browse the repository at this point in the history
  • Loading branch information
ctruta committed Sep 14, 2024
1 parent c0f3dd4 commit 68d7ce8
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 1.6.x-{build}

branches:
except:
- /libpng[0-1][0-7]/
- /libpng[0-1][0-8]/
- /v[0-1][.][0-7][.][0-9]+/

image:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ on:
push:
branches:
- libpng16
- libpng18
pull_request:
branches:
- libpng16
- libpng18

jobs:
lint:
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
branches:
except:
- /libpng[0-1][0-7]/
- /libpng[0-1][0-8]/
- /v[0-1][.][0-7][.][0-9]+/

language: c
Expand Down
6 changes: 3 additions & 3 deletions ci/ci_verify_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -101,11 +101,11 @@ function ci_verify_version {
else
ci_err "mismatched: \$PNG_LIBPNG_VER_BUILD -eq 0"
fi
if [[ $PNG_LIBPNG_BUILD_BASE_TYPE -eq $PNG_LIBPNG_BUILD_BETA ]]
if [[ $PNG_LIBPNG_BUILD_BASE_TYPE -ne $PNG_LIBPNG_BUILD_STABLE ]]
then
ci_info "matched: \$PNG_LIBPNG_BUILD_BASE_TYPE -eq \$PNG_LIBPNG_BUILD_BETA"
ci_info "matched: \$PNG_LIBPNG_BUILD_BASE_TYPE -ne \$PNG_LIBPNG_BUILD_STABLE"
else
ci_err "mismatched: \$PNG_LIBPNG_BUILD_BASE_TYPE -ne \$PNG_LIBPNG_BUILD_BETA"
ci_err "mismatched: \$PNG_LIBPNG_BUILD_BASE_TYPE -eq \$PNG_LIBPNG_BUILD_STABLE"
fi
else
ci_err "unexpected: \$PNG_LIBPNG_VER_STRING == '$PNG_LIBPNG_VER_STRING'"
Expand Down

0 comments on commit 68d7ce8

Please sign in to comment.