mirror of
https://github.com/lights0123/n-link.git
synced 2025-07-04 00:18:13 +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:
|
push:
|
||||||
branches-ignore:
|
branches-ignore:
|
||||||
- 'dependabot/**'
|
- 'dependabot/**'
|
||||||
|
- publish
|
||||||
pull_request:
|
pull_request:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
@ -10,7 +11,7 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
platform: [macos-latest, ubuntu-16.04, windows-latest]
|
platform: [macos-latest, ubuntu-18.04, windows-latest]
|
||||||
|
|
||||||
runs-on: ${{ matrix.platform }}
|
runs-on: ${{ matrix.platform }}
|
||||||
steps:
|
steps:
|
||||||
|
|
2
.github/workflows/publish.yml
vendored
2
.github/workflows/publish.yml
vendored
|
@ -9,7 +9,7 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
platform: [macos-latest, ubuntu-16.04, windows-latest]
|
platform: [macos-latest, ubuntu-18.04, windows-latest]
|
||||||
|
|
||||||
runs-on: ${{ matrix.platform }}
|
runs-on: ${{ matrix.platform }}
|
||||||
steps:
|
steps:
|
||||||
|
|
|
@ -65,7 +65,6 @@ export default class Home extends Vue {
|
||||||
@Watch('selectedCalculator')
|
@Watch('selectedCalculator')
|
||||||
async onSelectCalculator(dev: string | null) {
|
async onSelectCalculator(dev: string | null) {
|
||||||
if (dev && !this.$devices.devices[dev].info && !this.$devices.devices[dev].needsDrivers) {
|
if (dev && !this.$devices.devices[dev].info && !this.$devices.devices[dev].needsDrivers) {
|
||||||
console.log('open', dev);
|
|
||||||
try {
|
try {
|
||||||
await this.$devices.open(dev);
|
await this.$devices.open(dev);
|
||||||
}catch(e) {
|
}catch(e) {
|
||||||
|
|
Loading…
Reference in a new issue