Compare commits

..

No commits in common. "57ea83cf4f1e3e84e4584fc29d0334a1dcd72610" and "a96fc101f25d7c227866df4790f8932b189ab139" have entirely different histories.

6 changed files with 14 additions and 14 deletions

View File

@ -7,7 +7,7 @@ on:
jobs: jobs:
build_macos: build_macos:
name: Build for MacOS name: Build for MacOS
runs-on: macos-13 runs-on: macos-10.15
steps: steps:
- name: "Checkout" - name: "Checkout"
uses: actions/checkout@v2 uses: actions/checkout@v2
@ -16,7 +16,7 @@ jobs:
- name: "Setup Go" - name: "Setup Go"
uses: actions/setup-go@v2 uses: actions/setup-go@v2
with: with:
go-version: '^1.17' go-version: '^1.16'
- name: Cache Go Modules - name: Cache Go Modules
uses: actions/cache@v2 uses: actions/cache@v2
with: with:
@ -34,7 +34,7 @@ jobs:
build_windows: build_windows:
name: Build for Windows name: Build for Windows
runs-on: windows-2022 runs-on: windows-2019
steps: steps:
- name: "Checkout" - name: "Checkout"
uses: actions/checkout@v2 uses: actions/checkout@v2
@ -43,7 +43,7 @@ jobs:
- name: "Setup Go" - name: "Setup Go"
uses: actions/setup-go@v2 uses: actions/setup-go@v2
with: with:
go-version: '^1.17' go-version: '^1.16'
- name: Cache Go Modules - name: Cache Go Modules
uses: actions/cache@v2 uses: actions/cache@v2
with: with:
@ -61,7 +61,7 @@ jobs:
build_linux: build_linux:
name: Build for Linux name: Build for Linux
runs-on: ubuntu-22.04 runs-on: ubuntu-18.04
steps: steps:
- name: "Checkout" - name: "Checkout"
uses: actions/checkout@v2 uses: actions/checkout@v2
@ -70,7 +70,7 @@ jobs:
- name: "Setup Go" - name: "Setup Go"
uses: actions/setup-go@v2 uses: actions/setup-go@v2
with: with:
go-version: '^1.17' go-version: '^1.16'
- name: Cache Go Modules - name: Cache Go Modules
uses: actions/cache@v2 uses: actions/cache@v2
with: with:

View File

@ -1,6 +1,6 @@
## Compilation ## Compilation
Install `Go >= 1.17` and `GCC`. Get the source code: Install `Go >= 1.16` and `GCC`. Get the source code:
git clone https://github.com/nkanaev/yarr.git git clone https://github.com/nkanaev/yarr.git

4
go.mod
View File

@ -1,11 +1,9 @@
module github.com/nkanaev/yarr module github.com/nkanaev/yarr
go 1.17 go 1.16
require ( require (
github.com/mattn/go-sqlite3 v1.14.7 github.com/mattn/go-sqlite3 v1.14.7
golang.org/x/net v0.8.0 golang.org/x/net v0.8.0
golang.org/x/sys v0.6.0 golang.org/x/sys v0.6.0
) )
require golang.org/x/text v0.8.0 // indirect

3
vendor/github.com/mattn/go-sqlite3/go.mod generated vendored Normal file
View File

@ -0,0 +1,3 @@
module github.com/mattn/go-sqlite3
go 1.12

0
vendor/github.com/mattn/go-sqlite3/go.sum generated vendored Normal file
View File

7
vendor/modules.txt vendored
View File

@ -1,17 +1,16 @@
# github.com/mattn/go-sqlite3 v1.14.7 # github.com/mattn/go-sqlite3 v1.14.7
## explicit; go 1.12 ## explicit
github.com/mattn/go-sqlite3 github.com/mattn/go-sqlite3
# golang.org/x/net v0.8.0 # golang.org/x/net v0.8.0
## explicit; go 1.17 ## explicit
golang.org/x/net/html golang.org/x/net/html
golang.org/x/net/html/atom golang.org/x/net/html/atom
golang.org/x/net/html/charset golang.org/x/net/html/charset
# golang.org/x/sys v0.6.0 # golang.org/x/sys v0.6.0
## explicit; go 1.17 ## explicit
golang.org/x/sys/internal/unsafeheader golang.org/x/sys/internal/unsafeheader
golang.org/x/sys/windows golang.org/x/sys/windows
# golang.org/x/text v0.8.0 # golang.org/x/text v0.8.0
## explicit; go 1.17
golang.org/x/text/encoding golang.org/x/text/encoding
golang.org/x/text/encoding/charmap golang.org/x/text/encoding/charmap
golang.org/x/text/encoding/htmlindex golang.org/x/text/encoding/htmlindex