Skip to content

Commit

Permalink
workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
EricWF committed Aug 7, 2024
1 parent 5d0a12d commit 0c8f438
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/ericwf-contracts-nightly.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: EricWF Contracts Nightly Release flow

permissions:
contents: write


on:
push:
branches:
- 'eric-contracts'
- "eric-test-contracts"


concurrency:
# Skip intermediate builds: always.
# Cancel intermediate builds: only if it is a pull request build.
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}

jobs:
check_clang:
name: "Do it"
if: github.repository_owner == 'efcs'
runs-on: aah
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.ref }}
fetch-depth: 0
- name: Find source
run: |
ls -l
pwd
echo "Done"
- name: Test clang
uses: ./.github/workflows/llvm-project-tests.yml
with:
build_target: check-clang
projects: clang
runtimes: 'libcxx;libcxxabi;libunwind'

0 comments on commit 0c8f438

Please sign in to comment.