-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* test.yml: Run jobs on macOS * Test only on Ubuntu * test.yml: Build targets one at a time * Use llvmPackages.stdenv * llvm-backend: Set USE_NIX=TRUE * Remove -rpath from kllvm_add_tool * Remove link_directories and include_directories * Add CMake flag USE_LTO * Revert "Add CMake flag USE_LTO" This reverts commit 4987693. * llvm-backend: Use FastBuild profile
- Loading branch information
Showing
4 changed files
with
46 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,10 @@ on: | |
push: | ||
jobs: | ||
tests: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/[email protected] | ||
with: | ||
|
@@ -14,6 +17,7 @@ jobs: | |
with: | ||
name: runtimeverification | ||
signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}' | ||
- run: nix-build -A llvm-backend -A llvm-backend-matching | ||
- run: nix-build -A llvm-backend | ||
- run: nix-build -A llvm-backend-matching | ||
- run: nix-shell --run "echo OK" | ||
- run: nix-build test.nix |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters