Skip to content

Commit

Permalink
Merge pull request #630 from Neptune650/self_hosted
Browse files Browse the repository at this point in the history
Remove warnings
  • Loading branch information
louis030195 authored Nov 5, 2024
2 parents fc6c67e + e3f1c98 commit c4ab9fd
Show file tree
Hide file tree
Showing 6 changed files with 40 additions and 1 deletion.
13 changes: 13 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ jobs:
toolchain: stable
override: true
cache: true
rustflags: ""

- uses: oven-sh/setup-bun@v2

Expand Down Expand Up @@ -65,12 +66,23 @@ jobs:
target\
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}

- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 22

- name: Install Rust
run: |
wget https://static.rust-lang.org/rustup/dist/x86_64-pc-windows-gnu/rustup-init.exe
.\rustup-init.exe -y
- name: Set up Rust
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: stable
override: true
cache: true
rustflags: ""

- name: setup Bun
uses: oven-sh/setup-bun@v2
Expand Down Expand Up @@ -128,6 +140,7 @@ jobs:
toolchain: stable
override: true
cache: true
rustflags: ""

- name: setup Bun
uses: oven-sh/setup-bun@v2
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/linux-integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
toolchain: stable
override: true
cache: true
rustflags: ""

- name: Install dependencies
run: .github/scripts/install_dependencies.sh
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/perf-long-running-end-to-end.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ jobs:
toolchain: stable
override: true
cache: true
rustflags: ""

- name: Install dependencies
run: |
Expand Down
14 changes: 13 additions & 1 deletion .github/workflows/release-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,16 +80,28 @@ jobs:
sed -i 's/^version = ".*"/version = "${{ github.event.inputs.version }}"/' screenpipe-app-tauri/src-tauri/Cargo.toml
fi
- name: setup Bun
- name: Setup Bun
uses: oven-sh/setup-bun@v2

- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 22

- name: Install Rust
if: matrix.args == '--target x86_64-pc-windows-msvc' || matrix.platform == 'big-windows'
run: |
wget https://static.rust-lang.org/rustup/dist/x86_64-pc-windows-gnu/rustup-init.exe
.\rustup-init.exe -y
- name: Set up Rust
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: stable
override: true
target: ${{ matrix.target }}
cache: true
rustflags: ""

- uses: actions/cache@v4
with:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/release-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ jobs:
override: true
cache: true
target: ${{ matrix.target }}
rustflags: ""

- name: Cache Homebrew packages
uses: actions/cache@v4
Expand Down
11 changes: 11 additions & 0 deletions .github/workflows/windows-integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,23 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 22

- name: Install Rust
run: |
wget https://static.rust-lang.org/rustup/dist/x86_64-pc-windows-gnu/rustup-init.exe
.\rustup-init.exe -y
- name: Set up Rust
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: stable
override: true
cache: true
rustflags: ""

- name: Install dependencies
shell: pwsh
Expand Down

0 comments on commit c4ab9fd

Please sign in to comment.