-
Notifications
You must be signed in to change notification settings - Fork 737
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Pepijn Holster <pgaholster@gmail.com> Co-authored-by: PabstMirror <pabstmirror@gmail.com> Co-authored-by: LorenLuke <LukeLLL@aol.com> Co-authored-by: Grim <69561145+LinkIsGrim@users.noreply.github.com> Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com>
- Loading branch information
1 parent
1cd48c5
commit 043b390
Showing
411 changed files
with
3,973 additions
and
74,977 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 |
---|---|---|
@@ -1,29 +1,65 @@ | ||
name: Extensions | ||
|
||
on: | ||
pull_request: | ||
push: | ||
paths: | ||
- 'extensions/**' | ||
- 'extension/**' | ||
- 'Cargo.toml' | ||
- 'Cargo.lock' | ||
- '.github/workflows/extensions.yml' | ||
|
||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout the source code | ||
uses: actions/checkout@master | ||
- name: Install dependencies | ||
run: | | ||
rustup toolchain update stable --no-self-update | ||
rustup default stable | ||
rustup component add clippy rustfmt | ||
- name: Run rustfmt | ||
run: cargo fmt -- --check | ||
- name: Run clippy | ||
run: cargo clippy --all -- -Dwarnings | ||
|
||
test: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: xd009642/tarpaulin | ||
options: --security-opt seccomp=unconfined | ||
steps: | ||
- name: Checkout the source code | ||
uses: actions/checkout@master | ||
- name: Test & Coverage | ||
run: cargo tarpaulin --verbose --no-default-features --workspace --timeout 240 | ||
|
||
build: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [windows-latest] | ||
|
||
arrays: [ | ||
os: { tag: "windows-latest", target: "i686-pc-windows-msvc" }, | ||
os: { tag: "windows-latest", target: "x86_64-pc-windows-msvc" }, | ||
] | ||
runs-on: ${{ matrix.arrays.os.tag }} | ||
steps: | ||
- name: Checkout the source code | ||
uses: actions/checkout@v4 | ||
- name: Install stable Rust | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
target: ${{ matrix.arrays.os.target }} | ||
toolchain: stable | ||
default: true | ||
- name: Rust Cache | ||
uses: Swatinem/rust-cache@v2 | ||
- name: Build | ||
shell: cmd | ||
run: | | ||
cd extensions | ||
mkdir build | ||
cd build | ||
cmake .. && cmake --build . | ||
- name: Upload Artifact | ||
uses: actions/upload-artifact@v4 | ||
run: cargo build --verbose | ||
- name: Upload | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: ace3_extensions-${{ matrix.os }}-debug | ||
path: extensions/build | ||
name: ${{ matrix.arrays.os.target }} | ||
path: target/debug/ace.dll | ||
if-no-files-found: error | ||
retention-days: 30 |
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
Oops, something went wrong.