Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
felixmoebius
libc
Commits
ab0442cd
Commit
ab0442cd
authored
9 years ago
by
Alex Crichton
Browse files
Options
Downloads
Patches
Plain Diff
AppVeyor has MSYS2 installed by default now!
parent
9b5447f1
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
appveyor.yml
+1
-8
1 addition, 8 deletions
appveyor.yml
ci/msys2.ps1
+0
-22
0 additions, 22 deletions
ci/msys2.ps1
with
1 addition
and
30 deletions
appveyor.yml
+
1
−
8
View file @
ab0442cd
environment
:
environment
:
global
:
MSYS2_BASEVER
:
20150512
matrix
:
matrix
:
-
TARGET
:
x86_64-pc-windows-gnu
-
TARGET
:
x86_64-pc-windows-gnu
MSYS2_ARCH
:
x86_64
MSYS2_BITS
:
64
MSYS2_BITS
:
64
MSYSTEM
:
MINGW64
-
TARGET
:
i686-pc-windows-gnu
-
TARGET
:
i686-pc-windows-gnu
MSYS2_ARCH
:
i686
MSYS2_BITS
:
32
MSYS2_BITS
:
32
MSYSTEM
:
MINGW32
-
TARGET
:
x86_64-pc-windows-msvc
-
TARGET
:
x86_64-pc-windows-msvc
-
TARGET
:
i686-pc-windows-msvc
-
TARGET
:
i686-pc-windows-msvc
install
:
install
:
-
ps
:
ci\msys2.ps1
-
ps
:
Start-FileDownload "https://static.rust-lang.org/dist/rust-nightly-${env:TARGET}.exe"
-
ps
:
Start-FileDownload "https://static.rust-lang.org/dist/rust-nightly-${env:TARGET}.exe"
-
rust-nightly-%TARGET%.exe /VERYSILENT /NORESTART /DIR="C:\Program Files (x86)\Rust"
-
rust-nightly-%TARGET%.exe /VERYSILENT /NORESTART /DIR="C:\Program Files (x86)\Rust"
-
SET PATH=%PATH%;C:\Program Files (x86)\Rust\bin
-
SET PATH=%PATH%;C:\Program Files (x86)\Rust\bin
-
if defined MSYS2_BITS set PATH=%PATH%;
%CD%
\msys
2
\mingw%MSYS2_BITS%\bin
-
if defined MSYS2_BITS set PATH=%PATH%;
C:
\msys
64
\mingw%MSYS2_BITS%\bin
-
rustc -V
-
rustc -V
-
cargo -V
-
cargo -V
...
...
This diff is collapsed.
Click to expand it.
ci/msys2.ps1
deleted
100644 → 0
+
0
−
22
View file @
9b5447f1
# Installs MSYS2 on AppVeyor builders
If
(
!
${env:MSYS2_ARCH}
)
{
Exit
0
}
Start-FileDownload
`
(
"http://kent.dl.sourceforge.net/project/msys2/Base/"
+
`
$
env
:
MSYS2_ARCH
+
"/msys2-base-"
+
$
env
:
MSYS2_ARCH
+
"-"
+
`
$
env
:
MSYS2_BASEVER
+
".tar.xz"
)
`
-FileName
"msys2.tar.xz"
7
z
x
msys2.tar.xz
7
z
x
msys2.tar
>
$nul
Move-Item
(
"msys"
+
$
env
:
MSYS2_BITS
)
msys2
.
\msys2\usr\bin\bash.exe
-lc
""
.
\msys2\usr\bin\bash.exe
-lc
`
(
"for i in {1..3}; do "
+
`
"pacman --noconfirm -Suy mingw-w64-"
+
$
env
:
MSYS2_ARCH
+
"-gcc "
+
`
"&& break || sleep 15; "
+
`
"done"
)
.
\msys2\autorebase.bat
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment