mirror of https://github.com/restic/restic.git
commit
913a34f568
|
@ -21,7 +21,7 @@ jobs:
|
||||||
- job_name: macOS
|
- job_name: macOS
|
||||||
go: 1.15.x
|
go: 1.15.x
|
||||||
os: macOS-latest
|
os: macOS-latest
|
||||||
test_fuse: true
|
test_fuse: false
|
||||||
|
|
||||||
- job_name: Linux
|
- job_name: Linux
|
||||||
go: 1.15.x
|
go: 1.15.x
|
||||||
|
@ -79,11 +79,6 @@ jobs:
|
||||||
|
|
||||||
# add $HOME/bin to path ($GOBIN was already added to the path by setup-go@v2)
|
# add $HOME/bin to path ($GOBIN was already added to the path by setup-go@v2)
|
||||||
echo $HOME/bin >> $GITHUB_PATH
|
echo $HOME/bin >> $GITHUB_PATH
|
||||||
|
|
||||||
echo "install osxfuse"
|
|
||||||
if [ "$RUNNER_OS" == "macOS" ]; then
|
|
||||||
brew cask install osxfuse
|
|
||||||
fi
|
|
||||||
if: matrix.os == 'ubuntu-latest' || matrix.os == 'macOS-latest'
|
if: matrix.os == 'ubuntu-latest' || matrix.os == 'macOS-latest'
|
||||||
|
|
||||||
- name: Get programs (Windows)
|
- name: Get programs (Windows)
|
||||||
|
@ -114,11 +109,11 @@ jobs:
|
||||||
|
|
||||||
# install exactly these versions of tar and the libraries, other combinations might not work!
|
# install exactly these versions of tar and the libraries, other combinations might not work!
|
||||||
|
|
||||||
Invoke-WebRequest https://sourceforge.netcologne.de/project/gnuwin32/tar/1.13-1/tar-1.13-1-bin.zip -OutFile tar.zip
|
Invoke-WebRequest https://github.com/restic/test-assets/raw/master/tar-1.13-1-bin.zip -OutFile tar.zip
|
||||||
unzip tar.zip
|
unzip tar.zip
|
||||||
Invoke-WebRequest https://master.dl.sourceforge.net/project/gnuwin32/libintl/0.11.5-2/libintl-0.11.5-2-bin.zip -OutFile libintl.zip
|
Invoke-WebRequest https://github.com/restic/test-assets/raw/master/libintl-0.11.5-2-bin.zip -OutFile libintl.zip
|
||||||
unzip libintl.zip
|
unzip libintl.zip
|
||||||
Invoke-WebRequest https://master.dl.sourceforge.net/project/gnuwin32/libiconv/1.8-1/libiconv-1.8-1-bin.zip -OutFile libiconv.zip
|
Invoke-WebRequest https://github.com/restic/test-assets/raw/master/libiconv-1.8-1-bin.zip -OutFile libiconv.zip
|
||||||
unzip libiconv.zip
|
unzip libiconv.zip
|
||||||
|
|
||||||
# add $USERPROFILE/tar/bin to path
|
# add $USERPROFILE/tar/bin to path
|
||||||
|
|
Loading…
Reference in New Issue