mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-04 21:04:57 +00:00
CI: Resolve use of variable TRAVIS_OS_NAME
This commit is contained in:
parent
2808aa5e0f
commit
915f0b5ef4
4 changed files with 5 additions and 5 deletions
7
.ci.sh
7
.ci.sh
|
@ -33,13 +33,16 @@
|
|||
|
||||
set -e
|
||||
|
||||
if [[ ${TRAVIS_OS_NAME} = osx ]]; then
|
||||
if [[ ${RUNNER_OS} = macOS ]]; then
|
||||
latest_brew_python3_bin="$(ls -1d /usr/local/Cellar/python/3.*/bin | sort -n | tail -n1)"
|
||||
export PATH="${latest_brew_python3_bin}${PATH:+:}${PATH}"
|
||||
export PATH="/usr/local/opt/coreutils/libexec/gnubin${PATH:+:}${PATH}"
|
||||
export PATH="/usr/local/opt/findutils/libexec/gnubin${PATH:+:}${PATH}"
|
||||
elif [[ ${TRAVIS_OS_NAME} = linux ]]; then
|
||||
elif [[ ${RUNNER_OS} = Linux ]]; then
|
||||
export PATH="/usr/lib/llvm-15/bin:${PATH}"
|
||||
else
|
||||
echo "Unsupported RUNNER_OS \"${RUNNER_OS}\"." >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "New \${PATH}:"
|
||||
|
|
1
.github/workflows/coverage.yml
vendored
1
.github/workflows/coverage.yml
vendored
|
@ -79,7 +79,6 @@ jobs:
|
|||
- name: Collect test coverage
|
||||
env:
|
||||
MODE: coverage-sh
|
||||
TRAVIS_OS_NAME: linux
|
||||
run: |
|
||||
exec ./.ci.sh
|
||||
|
||||
|
|
1
.github/workflows/linux.yml
vendored
1
.github/workflows/linux.yml
vendored
|
@ -137,6 +137,5 @@ jobs:
|
|||
- name: Perform check "${{ matrix.MODE }}"
|
||||
env:
|
||||
MODE: ${{ matrix.MODE }}
|
||||
TRAVIS_OS_NAME: linux
|
||||
run: |
|
||||
env ${{ matrix.FLAT_ENV }} ./.ci.sh
|
||||
|
|
1
.github/workflows/macos.yml
vendored
1
.github/workflows/macos.yml
vendored
|
@ -61,6 +61,5 @@ jobs:
|
|||
- name: Perform check "${{ matrix.MODE }}"
|
||||
env:
|
||||
MODE: ${{ matrix.MODE }}
|
||||
TRAVIS_OS_NAME: osx
|
||||
run: |
|
||||
env ${{ matrix.FLAT_ENV }} ./.ci.sh
|
||||
|
|
Loading…
Add table
Reference in a new issue