Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ jobs:
os: [ ubuntu-latest, macos-15-intel, windows-latest ]
steps:
- uses: actions/checkout@v3
with:
submodules: true
- uses: actions-rust-lang/setup-rust-toolchain@v1
- if: matrix.os == 'windows-latest'
name: Windows Dependencies
Expand All @@ -40,6 +42,8 @@ jobs:
os: [ ubuntu-latest, macos-15-intel ]
steps:
- uses: actions/checkout@v2
with:
submodules: true
- uses: actions-rust-lang/setup-rust-toolchain@v1
- name: Integration_Test
run: make integration
Expand All @@ -51,6 +55,8 @@ jobs:
os: [ ubuntu-latest, macos-15-intel ]
steps:
- uses: actions/checkout@v2
with:
submodules: true
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
components: rustfmt, clippy
Expand All @@ -70,6 +76,8 @@ jobs:
- --hide-inclusion-graph --show-stats licenses
steps:
- uses: actions/checkout@v3
with:
submodules: true
- uses: actions-rust-lang/setup-rust-toolchain@v1
- name: cargo-deny
uses: EmbarkStudios/cargo-deny-action@v2
Expand Down
16 changes: 16 additions & 0 deletions .github/workflows/package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ jobs:
upload_url: ${{ steps.create-release.outputs.upload_url }}
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Set tag
run: |
export GIT_TAG_NAME=` echo ${{ github.ref }} | awk -F '/' '{print $4}' `
Expand All @@ -45,6 +47,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Set Env
run: |
export GIT_TAG_NAME=` echo ${{ github.ref }} | awk -F '/' '{print $4}' `
Expand Down Expand Up @@ -80,6 +84,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Set Env
run: |
export GIT_TAG_NAME=` echo ${{ github.ref }} | awk -F '/' '{print $4}' `
Expand Down Expand Up @@ -119,6 +125,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Set Env
run: |
export GIT_TAG_NAME=` echo ${{ github.ref }} | awk -F '/' '{print $4}' `
Expand Down Expand Up @@ -154,6 +162,8 @@ jobs:
runs-on: macos-13
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Set Env
run: |
export GIT_TAG_NAME=` echo ${{ github.ref }} | awk -F '/' '{print $4}' `
Expand Down Expand Up @@ -205,6 +215,8 @@ jobs:
fi

- uses: actions/checkout@v4
with:
submodules: true
- name: Set Env
run: |
export GIT_TAG_NAME=` echo ${{ github.ref }} | awk -F '/' '{print $4}' `
Expand Down Expand Up @@ -251,6 +263,8 @@ jobs:
echo "C:\msys64\mingw64\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
echo "LIBCLANG_PATH=$env:USERPROFILE\scoop\apps\llvm\current\bin" >> $env:GITHUB_ENV
- uses: actions/checkout@v4
with:
submodules: true
- name: Build
run: |
make prod
Expand Down Expand Up @@ -308,6 +322,8 @@ jobs:
- package-for-centos
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Set tag
run: |
export GIT_TAG_NAME=` echo ${{ github.ref }} | awk -F '/' '{print $4}' `
Expand Down
Loading
Loading