Skip to content

Commit

Permalink
Downgrade LLVM in GH Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Raphiiko committed Jun 22, 2024
1 parent 62c35e5 commit 6f5f4be
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 36 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build-development.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ jobs:
run: npm run set-flavour DEV
- name: Set build id
run: npm run set-build-id
- name: Install LLVM and Clang
uses: KyleMayes/install-llvm-action@v2
with:
version: "17.0.6"
- name: Install Rust stable toolchain
uses: actions-rs/toolchain@v1
with:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ jobs:
run: npm run set-flavour STANDALONE
- name: Set build id
run: npm run set-build-id
- name: Install LLVM and Clang
uses: KyleMayes/install-llvm-action@v2
with:
version: "17.0.6"
- name: Install Rust stable toolchain
uses: actions-rs/toolchain@v1
with:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/build-steam-beta-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ jobs:
cache: npm
- name: Initialize the project
run: npm run ci
- name: Install LLVM and Clang
uses: KyleMayes/install-llvm-action@v2
with:
version: "17.0.6"
- name: Install Rust stable toolchain
uses: actions-rs/toolchain@v1
with:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/build-steam-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ jobs:
cache: npm
- name: Initialize the project
run: npm run ci
- name: Install LLVM and Clang
uses: KyleMayes/install-llvm-action@v2
with:
version: "17.0.6"
- name: Install Rust stable toolchain
uses: actions-rs/toolchain@v1
with:
Expand Down
37 changes: 1 addition & 36 deletions .github/workflows/pr-and-feature-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
platform: [windows-latest]
platform: [ windows-latest ]
runs-on: ${{ matrix.platform }}

steps:
Expand All @@ -28,38 +28,3 @@ jobs:
run: npm run ci
- name: Lint Angular project
run: npm run lint
- name: Set app version to DEV version
run: npm run set-version DEV
- name: Set flavour to DEV
run: npm run set-flavour DEV
- name: Set build id
run: npm run set-build-id
- name: Install Rust stable toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: 1.77.2
default: true
override: true
- name: Install Protoc
uses: arduino/setup-protoc@v2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Configure Rust cache
uses: Swatinem/rust-cache@v2
with:
workspaces: |
src-shared-rust
src-elevated-sidecar
src-core
# - name: Install development Tauri CLI
# run: cargo install --git https://github.com/tauri-apps/tauri --branch 1.x tauri-cli
- name: Test if OyasumiVR compiles
uses: tauri-apps/tauri-action@v0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
# tauriScript: cargo-tauri
includeDebug: true
includeRelease: false
includeUpdaterJson: false
args: -b "{\"tauri\":{\"bundle\":{\"active\":false}}}"

0 comments on commit 6f5f4be

Please sign in to comment.