-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
HACK investigate macos build failure
- Loading branch information
Showing
3 changed files
with
3 additions
and
39 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 |
---|---|---|
|
@@ -26,44 +26,6 @@ env: | |
LDFLAGS_OSX: -L/usr/local/opt/[email protected]/lib | ||
|
||
jobs: | ||
Ubuntu: | ||
name: Ubuntu | ||
# Ubuntu 16.04 comes with valgrind-3.11, which can't handle RDRAND | ||
# instructions. We need at least Ubuntu 18.04, which has valgrind-3.13. | ||
runs-on: ubuntu-18.04 | ||
steps: | ||
- name: Update apt-get | ||
run: sudo apt-get update | ||
- name: Install software | ||
run: sudo apt-get install --no-install-recommends valgrind | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
- name: Compile with clang | ||
env: | ||
CC: clang-9 | ||
CFLAGS: ${{ env.CFLAGS_ALL }} | ||
${{ env.CFLAGS_CLANG_LIBCPERCIVA }} | ||
${{ env.CFLAGS_CLANG_PROJECT }} | ||
run: make | ||
- name: Test clang binaries | ||
env: | ||
USE_VALGRIND: 1 | ||
run: make test | ||
- name: Clean | ||
run: make clean | ||
- name: Compile with gcc | ||
env: | ||
CC: gcc-10 | ||
CFLAGS: ${{ env.CFLAGS_ALL }} | ||
${{ env.CFLAGS_GCC_LIBCPERCIVA }} | ||
${{ env.CFLAGS_GCC_PROJECT }} | ||
run: make | ||
- name: Test gcc binaries | ||
env: | ||
USE_VALGRIND: 1 | ||
run: make test | ||
- name: Check for untracked files | ||
run: test -z "$(git status --porcelain=v1)" | ||
macOS: | ||
name: macOS | ||
runs-on: macOS-11 | ||
|
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