Drop gnutls build #30
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright (C) Viktor Szakats | |
# | |
# SPDX-License-Identifier: curl | |
--- | |
name: curl-for-win | |
'on': | |
push: | |
branches: | |
- master | |
- '*/ci' | |
paths-ignore: | |
- '**/*.md' | |
- '.circleci/**' | |
- 'appveyor.*' | |
- 'packages/**' | |
- 'plan9/**' | |
- 'projects/**' | |
- 'winbuild/**' | |
pull_request: | |
branches: | |
- master | |
paths-ignore: | |
- '**/*.md' | |
- '.circleci/**' | |
- 'appveyor.*' | |
- 'packages/**' | |
- 'plan9/**' | |
- 'projects/**' | |
- 'winbuild/**' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }} | |
cancel-in-progress: true | |
permissions: {} | |
env: | |
CW_NOGET: 'curl trurl' | |
CW_MAP: '0' | |
CW_JOBS: '5' | |
CW_NOPKG: '1' | |
DOCKER_CONTENT_TRUST: '1' | |
jobs: | |
linux-glibc-llvm: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
with: | |
path: 'curl' | |
fetch-depth: 8 | |
- name: 'build' | |
run: | | |
git clone --depth 1 https://github.com/curl/curl-for-win | |
mv curl-for-win/* . | |
export CW_CONFIG='-main-werror-linux-a64-x64' | |
export CW_REVISION='${{ github.sha }}' | |
DOCKER_IMAGE='debian:bookworm-slim' | |
export CW_CCSUFFIX='-15' | |
export CW_GCCSUFFIX='-12' | |
docker trust inspect --pretty "${DOCKER_IMAGE}" | |
time docker pull "${DOCKER_IMAGE}" | |
docker images --digests | |
time docker run --volume "$(pwd):$(pwd)" --workdir "$(pwd)" \ | |
--env-file <(env | grep -a -E \ | |
'^(CW_|GITHUB_)') \ | |
"${DOCKER_IMAGE}" \ | |
sh -c ./_ci-linux-debian.sh | |
linux-musl-llvm: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
with: | |
path: 'curl' | |
fetch-depth: 8 | |
- name: 'build' | |
run: | | |
git clone --depth 1 https://github.com/curl/curl-for-win | |
mv curl-for-win/* . | |
export CW_CONFIG='-main-werror-linux-musl-r64-x64' | |
export CW_REVISION='${{ github.sha }}' | |
. ./_versions.sh | |
docker trust inspect --pretty "${DOCKER_IMAGE}" | |
time docker pull "${DOCKER_IMAGE}" | |
docker images --digests | |
time docker run --volume "$(pwd):$(pwd)" --workdir "$(pwd)" \ | |
--env-file <(env | grep -a -E \ | |
'^(CW_|GITHUB_)') \ | |
"${DOCKER_IMAGE}" \ | |
sh -c ./_ci-linux-debian.sh | |
mac-clang: | |
runs-on: macos-latest | |
timeout-minutes: 30 | |
env: | |
CW_JOBS: '4' | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
with: | |
path: 'curl' | |
fetch-depth: 8 | |
- name: 'build' | |
run: | | |
git clone --depth 1 https://github.com/curl/curl-for-win | |
mv curl-for-win/* . | |
export CW_CONFIG='-main-werror-mac-x64' | |
export CW_REVISION='${{ github.sha }}' | |
sh -c ./_ci-mac-homebrew.sh | |
win-llvm: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
with: | |
path: 'curl' | |
fetch-depth: 8 | |
- name: 'build' | |
run: | | |
git clone --depth 1 https://github.com/curl/curl-for-win | |
mv curl-for-win/* . | |
export CW_CONFIG='-main-werror-win-x64' | |
export CW_REVISION='${{ github.sha }}' | |
. ./_versions.sh | |
docker trust inspect --pretty "${DOCKER_IMAGE}" | |
time docker pull "${DOCKER_IMAGE}" | |
docker images --digests | |
time docker run --volume "$(pwd):$(pwd)" --workdir "$(pwd)" \ | |
--env-file <(env | grep -a -E \ | |
'^(CW_|GITHUB_)') \ | |
"${DOCKER_IMAGE}" \ | |
sh -c ./_ci-linux-debian.sh |