Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test #4

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 15 additions & 11 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,19 @@ env:
JSON_VERSION: v3.11.3

jobs:
clang-format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.x
- uses: pre-commit/[email protected]
- uses: pre-commit-ci/[email protected]
if: always()

Linux:
needs: clang-format
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down Expand Up @@ -143,6 +155,7 @@ jobs:
run: scripts/build/run-tests.sh --run-docker --debug

macOS:
needs: clang-format
runs-on: macos-latest
env:
BASE: /tmp
Expand All @@ -163,6 +176,7 @@ jobs:
run: scripts/build/run-tests.sh /tmp/klee_build* --debug

Docker:
needs: clang-format
runs-on: ubuntu-latest
steps:
- name: Checkout KLEE Code
Expand All @@ -173,6 +187,7 @@ jobs:
run: docker build .

Coverage:
needs: clang-format
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down Expand Up @@ -209,14 +224,3 @@ jobs:
- name: Run tests
env: ${{ matrix.env }}
run: scripts/build/run-tests.sh --coverage --upload-coverage --run-docker --debug

clang-format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.x
- uses: pre-commit/[email protected]
- uses: pre-commit-ci/[email protected]
if: always()
Loading