_build.sh: enable -fstack-protector-all
for linux targets
#158
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. See LICENSE.md | |
# SPDX-License-Identifier: MIT | |
--- | |
# https://docs.github.com/actions/learn-github-actions | |
name: build | |
on: | |
push: | |
branches: | |
- main | |
- dev | |
- test | |
permissions: {} | |
env: | |
CW_MAP: '1' | |
CW_JOBS: '3' | |
DO_NOT_TRACK: '1' | |
jobs: | |
linux: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: 'build' | |
run: | | |
export CW_CONFIG='${{ github.ref_name }}-linux' | |
export CW_REVISION='${{ github.sha }}' | |
. ./_versions.sh | |
time docker pull "${DOCKER_IMAGE}" | |
docker images --digests | |
time docker run --volume "$(pwd):$(pwd)" --workdir "$(pwd)" \ | |
--env-file <(env | grep -a -E \ | |
'^(CW_|GITHUB_|DO_NOT_TRACK)') \ | |
"${DOCKER_IMAGE}" \ | |
sh -c ./_ci-linux-debian.sh | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: 'curl-linux' | |
retention-days: 5 | |
path: | | |
*-*-linux*.* | |
urls.txt | |
mac: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: 'build' | |
run: | | |
export CW_CONFIG='${{ github.ref_name }}-mac-macuni' | |
export CW_REVISION='${{ github.sha }}' | |
sh -c ./_ci-mac-homebrew.sh | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: 'curl-macos-universal' | |
retention-days: 5 | |
path: | | |
*-*-macos*.* | |
urls.txt |