Skip to content

add github action

add github action #2

Workflow file for this run

name: Build and Test libc++
on:
push:
schedule:
# Run nightly at 08:00 UTC (aka 00:00 Pacific, aka 03:00 Eastern)
- cron: '0 8 * * *'
permissions:
contents: read # Default everything to read-only
jobs:
job1:
runs-on: ubuntu-latest
strategy:

Check failure on line 15 in .github/workflows/test.yaml

View workflow run for this annotation

GitHub Actions / Build and Test libc++

Invalid workflow file

The workflow is not valid. .github/workflows/test.yaml (Line: 15, Col: 14): Unexpected value ''
#fail-fast: false
#matrix:
# config: [
# 'generic-cxx03',
# 'generic-cxx26',
# 'generic-modules'
# ]
# cc: [ 'clang-19' ]
# cxx: [ 'clang++-19' ]
# include:
# - config: 'generic-gcc'
# cc: 'gcc-14'
# cxx: 'g++-14'
steps:
- uses: actions/checkout@v4
- name: checkout and build
run: ./ci/run.sh
#libcxx/utils/ci/run-buildbot ${{ matrix.config }}
#env:
# CC: ${{ matrix.cc }}
# CXX: ${{ matrix.cxx }}