WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

[TESTING/WIP] build: Fix compiler #344

[TESTING/WIP] build: Fix compiler

[TESTING/WIP] build: Fix compiler #344

Workflow file for this run

name: Nighthawk/Test CI/CD
permissions:
contents: read
on:
pull_request:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
check:
permissions:
contents: read
packages: read
strategy:
fail-fast: false
matrix:
target:
- build
- check_format
uses: ./.github/workflows/_ci.yml
with:
task: ${{ matrix.target }}
test:
permissions:
contents: read
packages: read
needs: check
strategy:
fail-fast: false
matrix:
target:
- asan
- benchmark_with_own_binaries
- test
- test_gcc
- tsan
uses: ./.github/workflows/_ci.yml
with:
task: ${{ matrix.target }}
release:
secrets:
dockerhub-username: >-
${{ (github.event_name == 'push'
&& github.ref == 'refs/heads/main')
&& secrets.DOCKERHUB_USERNAME
|| '' }}
dockerhub-password: >-
${{ (github.event_name == 'push'
&& github.ref == 'refs/heads/main')
&& secrets.DOCKERHUB_PASSWORD
|| '' }}
permissions:
contents: read
packages: read
needs: test
uses: ./.github/workflows/_ci.yml
with:
task: docker
bazel-extra: >-
--config=remote-ci-download
docker-in-docker: true