-
Notifications
You must be signed in to change notification settings - Fork 594
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* [CI] matrix-os build
- Loading branch information
Showing
920 changed files
with
191 additions
and
159,071 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
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 |
---|---|---|
|
@@ -8,6 +8,6 @@ | |
"terminal.integrated.shell.linux": "/bin/bash" | ||
}, | ||
"extensions": [ | ||
"rust-lang.rust" | ||
"rust-lang.rust-analyzer" | ||
] | ||
} |
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: Ubuntu | ||
|
||
on: [push] | ||
jobs: | ||
build-and-test: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Install dependencies on Ubuntu | ||
if: runner.os == 'Linux' | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y g++ libgdal-dev libopenscenegraph-dev | ||
- name: Build | ||
run: cargo build --verbose --release | ||
|
||
- name: Test | ||
run: cargo test --verbose |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Windows | ||
|
||
on: [push] | ||
jobs: | ||
build-and-test: | ||
runs-on: windows-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Cache dependencies | ||
uses: actions/cache@v4 | ||
id: cache-vcpkg | ||
with: | ||
path: ./vcpkg | ||
key: ${{ runner.os }}-vcpkg-${{ hashFiles('**/build.rs') }} | ||
restore-keys: | | ||
${{ runner.os }}-vcpkg- | ||
- name: Install dependencies on Windows | ||
if: steps.cache-vcpkg.outputs.cache-hit != 'true' | ||
run: | | ||
git clone https://github.com/microsoft/vcpkg.git | ||
./vcpkg/bootstrap-vcpkg.bat | ||
./vcpkg/vcpkg install gdal:x64-windows-release | ||
./vcpkg/vcpkg install osg:x64-windows-release | ||
tree ./vcpkg/installed /F /A | ||
- name: Build | ||
run: cargo build --verbose --release |
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
Binary file not shown.
Oops, something went wrong.