Skip to content

/vsis3/: include AWS_CONTAINER_CREDENTIALS_TOKEN in container credentials flow #16132

/vsis3/: include AWS_CONTAINER_CREDENTIALS_TOKEN in container credentials flow

/vsis3/: include AWS_CONTAINER_CREDENTIALS_TOKEN in container credentials flow #16132

Workflow file for this run

name: MacOS build
on:
push:
paths-ignore:
- 'doc/**'
branches-ignore:
- 'backport**'
- 'dependabot**'
pull_request:
paths-ignore:
- 'doc/**'
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
permissions:
contents: read # to fetch code (actions/checkout)
jobs:
macos_build:
# Arm64
runs-on: macos-14
if: "!contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]')"
steps:
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
- uses: conda-incubator/setup-miniconda@a4260408e20b96e80095f42ff7f1a15b27dd94ca # v3.0.4
with:
channels: conda-forge
auto-update-conda: true
- name: Install Requirements
shell: bash -l {0}
run: |
source ./ci/travis/osx/before_install.sh
- name: Build
shell: bash -l {0}
run: |
source ./ci/travis/osx/install.sh
- name: Run tests
shell: bash -l {0}
run: |
source ./ci/travis/osx/script.sh
env:
# Emulate a few Travis-CI env variable so that some tests get properly skipped
TRAVIS: true
TRAVIS_OS_NAME: osx
BUILD_NAME: macos_build_conda