Skip to content

Commit

Permalink
remove cronjob from workflow while we're testing
Browse files Browse the repository at this point in the history
  • Loading branch information
andrej committed Oct 31, 2024
1 parent 23fda6f commit 26536a5
Showing 1 changed file with 4 additions and 22 deletions.
26 changes: 4 additions & 22 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
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 * * *'
#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
Expand All @@ -12,25 +12,7 @@ permissions:
jobs:
job1:
runs-on: ubuntu-latest
#strategy:
#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 }}
run: ./ci/run.sh

0 comments on commit 26536a5

Please sign in to comment.