rust.yml update pci.ids on each run

For some unknown reason, ubuntu 20.04 is missing some entries from the PCI ID database that are present both in older and newer versions.
This commit is contained in:
ilyazzz 2021-01-21 15:49:47 +02:00 committed by GitHub
parent 5da2610a7c
commit 0959667ca7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,6 +20,8 @@ jobs:
run: sudo apt update run: sudo apt update
- name: Install dependencies - name: Install dependencies
run: sudo apt install libgtk-3-dev libvulkan-dev run: sudo apt install libgtk-3-dev libvulkan-dev
- name: Update pci.ids
run: sudo sh -c "curl https://pci-ids.ucw.cz/v2.2/pci.ids > /usr/share/misc/pci.ids"
- name: Build - name: Build
run: cargo build run: cargo build
- name: Run tests - name: Run tests