-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Install dependencies on linux for fltk
- Loading branch information
Showing
2 changed files
with
8 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 |
---|---|---|
|
@@ -17,10 +17,12 @@ jobs: | |
- uses: actions/checkout@v1 | ||
- name: Rust Cache | ||
uses: Swatinem/[email protected] | ||
- name: dependencies | ||
run: | | ||
apt-get install -y libx11-dev libxext-dev libxft-dev libxinerama-dev libxcursor-dev libxrender-dev libxfixes-dev libpango1.0-dev libpng-dev libgl1-mesa-dev libglu1-mesa-dev | ||
- name: Test | ||
run: | | ||
cargo test | ||
cargo test | ||
test_Windows: | ||
runs-on: windows-latest | ||
steps: | ||
|
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 |
---|---|---|
|
@@ -45,6 +45,10 @@ jobs: | |
- name: Rust Cache | ||
id: rust_cache | ||
uses: Swatinem/[email protected] | ||
- name: Install dependencies | ||
if: ${{ matrix.os == 'ubuntu-latest' }} | ||
run: | | ||
apt-get install -y libx11-dev libxext-dev libxft-dev libxinerama-dev libxcursor-dev libxrender-dev libxfixes-dev libpango1.0-dev libpng-dev libgl1-mesa-dev libglu1-mesa-dev | ||
- name: Build Release Version | ||
run: cargo build --release | ||
- name: Compress binaries | ||
|