Skip to content

Commit 24adca2

Browse files
committed
Set up CI with Azure Pipelines
1 parent dcb6b75 commit 24adca2

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

azure-pipelines.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Starter pipeline
2+
# Start with a minimal pipeline that you can customize to build and deploy your code.
3+
# Add steps that build, run tests, deploy, and more:
4+
# https://aka.ms/yaml
5+
6+
pool:
7+
vmImage: 'Ubuntu 16.04'
8+
9+
steps:
10+
- script: |
11+
wget -nv https://julialang-s3.julialang.org/bin/linux/x64/1.0/julia-1.0.1-linux-x86_64.tar.gz
12+
tar zxf julia-1.0.1-linux-x86_64.tar.gz
13+
displayName: 'Download and extract Julia 1.0'
14+
15+
- script: ./julia-1.0.0/bin/julia -e 'using Pkg; Pkg.resolve(); Pkg.test()'
16+
displayName: 'Run the tests'

0 commit comments

Comments
 (0)