-
Notifications
You must be signed in to change notification settings - Fork 172
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix failing CI tests and builds due to missing jemalloc
- Loading branch information
1 parent
6c54121
commit 2551be7
Showing
3 changed files
with
10 additions
and
2 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 |
---|---|---|
|
@@ -32,11 +32,11 @@ jobs: | |
|
||
- name: Install dependencies (Ubuntu or self-hosted) | ||
if: runner.os == 'Linux' | ||
run: sudo apt-get update -qq && sudo apt-get install -y upx-ucl build-essential cargo git golang | ||
run: sudo apt-get update -qq && sudo apt-get install -y upx-ucl build-essential cargo git golang libjemalloc-dev libjemalloc2 -y | ||
|
||
- name: Install dependencies (macOS) | ||
if: runner.os == 'macOS' | ||
run: brew install upx cargo-c | ||
run: brew install upx cargo-c jemalloc | ||
|
||
- name: Set up Go | ||
uses: actions/[email protected] | ||
|
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