mirror of
https://github.com/lights0123/n-link.git
synced 2024-12-22 18:25:27 +00:00
Update Ubuntu version
This commit is contained in:
parent
1d9cd520ef
commit
84d5e82d1a
3
.github/workflows/ci.yml
vendored
3
.github/workflows/ci.yml
vendored
|
@ -3,6 +3,7 @@ on:
|
|||
push:
|
||||
branches-ignore:
|
||||
- 'dependabot/**'
|
||||
- publish
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
|
@ -10,7 +11,7 @@ jobs:
|
|||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
platform: [macos-latest, ubuntu-16.04, windows-latest]
|
||||
platform: [macos-latest, ubuntu-18.04, windows-latest]
|
||||
|
||||
runs-on: ${{ matrix.platform }}
|
||||
steps:
|
||||
|
|
2
.github/workflows/publish.yml
vendored
2
.github/workflows/publish.yml
vendored
|
@ -9,7 +9,7 @@ jobs:
|
|||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
platform: [macos-latest, ubuntu-16.04, windows-latest]
|
||||
platform: [macos-latest, ubuntu-18.04, windows-latest]
|
||||
|
||||
runs-on: ${{ matrix.platform }}
|
||||
steps:
|
||||
|
|
|
@ -65,7 +65,6 @@ export default class Home extends Vue {
|
|||
@Watch('selectedCalculator')
|
||||
async onSelectCalculator(dev: string | null) {
|
||||
if (dev && !this.$devices.devices[dev].info && !this.$devices.devices[dev].needsDrivers) {
|
||||
console.log('open', dev);
|
||||
try {
|
||||
await this.$devices.open(dev);
|
||||
}catch(e) {
|
||||
|
|
Loading…
Reference in a new issue