Skip to content

Commit

Permalink
Update canary builds to use the same deps scripts as the main build.
Browse files Browse the repository at this point in the history
  • Loading branch information
jewelpit committed Jan 19, 2024
1 parent 3dd6365 commit e17e966
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Clone repo
uses: actions/checkout@v3
- name: Install deps
run: apt-get update && apt-get install -y gnome-common libnautilus-extension-dev libgtk-4-dev python3-gi python3-docutils
run: ./install-apt-deps.sh
- name: Test build
run: ./autogen.sh && make && make install
- name: Run tests
Expand All @@ -35,7 +35,7 @@ jobs:
- name: Clone repo
uses: actions/checkout@v3
- name: Install deps
run: apt-get update && apt-get install -y gnome-common libnautilus-extension-dev libgtk-4-dev python3-gi python3-docutils
run: ./install-apt-deps.sh
- name: Test build
run: ./autogen.sh && make && make install
- name: Run tests
Expand All @@ -54,7 +54,7 @@ jobs:
- name: Clone repo
uses: actions/checkout@v3
- name: Install deps
run: dnf install -y gnome-common nautilus-devel gtk4-devel python3-docutils python3-gobject
run: ./install-rpm-deps.sh
- name: Test build
run: ./autogen.sh && make && make install
- name: Run tests
Expand Down

0 comments on commit e17e966

Please sign in to comment.