Skip to content

Commit

Permalink
I forgot we build for windows too... end of day
Browse files Browse the repository at this point in the history
  • Loading branch information
ellie committed Apr 10, 2024
1 parent 9d5e475 commit fbcaaa4
Showing 1 changed file with 44 additions and 8 deletions.
52 changes: 44 additions & 8 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,17 @@ jobs:
key: ${{ runner.os }}-cargo-release-${{ hashFiles('**/Cargo.lock') }}

- name: Install dependencies
if: matrix.os != 'macos-14'
run: sudo apt update && sudo apt install libgtk-3-dev
if: matrix.os != 'macos-14' && matrix.os != 'windows-latest'
run: |
sudo apt update
sudo apt install libwebkit2gtk-4.1-dev \
build-essential \
curl \
wget \
file \
libssl-dev \
libayatana-appindicator3-dev \
librsvg2-dev
- name: Run cargo build common
run: cargo build -p atuin-common --locked --release
Expand Down Expand Up @@ -100,8 +109,17 @@ jobs:
toolchain: stable

- name: Install dependencies
if: matrix.os != 'macos-14'
run: sudo apt update && sudo apt install libgtk-3-dev
if: matrix.os != 'macos-14' && matrix.os != 'windows-latest'
run: |
sudo apt update
sudo apt install libwebkit2gtk-4.1-dev \
build-essential \
curl \
wget \
file \
libssl-dev \
libayatana-appindicator3-dev \
librsvg2-dev
- uses: taiki-e/install-action@v2
name: Install nextest
Expand Down Expand Up @@ -134,8 +152,17 @@ jobs:
toolchain: stable

- name: Install dependencies
if: matrix.os != 'macos-14'
run: sudo apt update && sudo apt install libgtk-3-dev
if: matrix.os != 'macos-14' && matrix.os != 'windows-latest'
run: |
sudo apt update
sudo apt install libwebkit2gtk-4.1-dev \
build-essential \
curl \
wget \
file \
libssl-dev \
libayatana-appindicator3-dev \
librsvg2-dev
- uses: actions/cache@v3
with:
Expand Down Expand Up @@ -212,8 +239,17 @@ jobs:
components: clippy

- name: Install dependencies
if: matrix.os != 'macos-14'
run: sudo apt update && sudo apt install libgtk-3-dev
if: matrix.os != 'macos-14' && matrix.os != 'windows-latest'
run: |
sudo apt update
sudo apt install libwebkit2gtk-4.1-dev \
build-essential \
curl \
wget \
file \
libssl-dev \
libayatana-appindicator3-dev \
librsvg2-dev
- uses: actions/cache@v3
with:
Expand Down

0 comments on commit fbcaaa4

Please sign in to comment.