summaryrefslogtreecommitdiff
path: root/Meta/Azure/Setup.yml
blob: 6aacfbc40ef60fbe6ac8d6249242fab5ad47dec5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
parameters:
  os: 'Linux'

steps:
  - checkout: self
    persistCredentials: true

  - ${{ if eq(parameters.os, 'Serenity') }}:
    - script: |
        sudo add-apt-repository ppa:canonical-server/server-backports
        sudo add-apt-repository ppa:ubuntu-toolchain-r/test
        sudo apt-get update
        sudo apt-get install ccache e2fsprogs gcc-11 g++-11 libstdc++-11-dev libmpfr-dev libmpc-dev ninja-build qemu-utils qemu-system-i386 unzip
      displayName: 'Install Dependencies'

  - ${{ if eq(parameters.os, 'Linux') }}:
    - script: |
        sudo apt-get purge -y clang-11 gcc-10
        sudo add-apt-repository ppa:ubuntu-toolchain-r/test
        sudo apt-get update
        sudo apt-get install ccache gcc-11 g++-11 libstdc++-11-dev ninja-build unzip

        sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-12 100
        sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-12 100
        sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-11 100
        sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-11 100

        wget https://github.com/WebAssembly/wabt/releases/download/1.0.23/wabt-1.0.23-ubuntu.tar.gz
        tar -xzf ./wabt-1.0.23-ubuntu.tar.gz
        rm ./wabt-1.0.23-ubuntu.tar.gz
      displayName: 'Install Dependencies'

  - ${{ if eq(parameters.os, 'macOS') }}:
    - script: |
        brew install ninja wabt ccache unzip
      displayName: 'Install Dependencies'