Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
6 changes: 3 additions & 3 deletions .azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
displayName: System Information
- script: sudo add-apt-repository 'ppa:ubuntu-toolchain-r/test' && sudo apt-get update && sudo apt-get install -y ninja-build ninja-build python3-pip python3-setuptools python3-wheel clang-14 clang-tools-14
displayName: Install APT Dependencies
- script: pip3 install -v meson==0.55.1
- script: pip3 install -v meson==0.64.0
displayName: Install pip Dependencies
- script: scan-build-14 /home/vsts/.local/bin/meson setup build -Db_sanitize=address,undefined
displayName: Configure
Expand All @@ -47,7 +47,7 @@ jobs:
displayName: System Information
- script: sudo add-apt-repository 'ppa:ubuntu-toolchain-r/test' && sudo apt-get update && sudo apt-get install -y ninja-build ninja-build python3-pip python3-setuptools python3-wheel gcc-10 g++-10
displayName: Install APT Dependencies
- script: pip3 install meson==0.55.1
- script: pip3 install meson==0.64.0
displayName: Install pip Dependencies
- script: /home/vsts/.local/bin/meson setup build -Db_sanitize=address,undefined
displayName: Configure
Expand All @@ -72,7 +72,7 @@ jobs:
# displayName: System Information
# - script: sudo dpkg --add-architecture mips64el && sudo apt-get update && sudo apt-get install -y ninja-build ninja-build python3-pip python3-setuptools python3-wheel libc6:mips64el gcc-10-mips64el-linux-gnuabi64 g++-10-mips64el-linux-gnuabi64 qemu-user-static
# displayName: Install APT Dependencies
# - script: pip3 install meson==0.55.1
# - script: pip3 install meson==0.64.0
# displayName: Install pip Dependencies
# - script: /home/vsts/.local/bin/meson setup build --cross-file=docker/cross-files/loongson-gcc-10.cross
# displayName: Configure
Expand Down
12 changes: 6 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
ccache --set-config=compression=true
ccache -p
ccache -z
- run: pipx install meson==0.55.1
- run: pipx install meson==1.3.2
- run: ./test/native-aliases.sh
- run: |
export PATH=/usr/lib/ccache:${PATH}
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
ccache --set-config=compression=true
ccache -p
ccache -z
- run: pipx install meson==0.55.1
- run: pipx install meson==1.3.2
- run: |
export PATH=/usr/lib/ccache:${PATH}
CC="ccache gcc" CXX="ccache g++" /root/.local/bin/meson setup build
Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:
ccache --set-config=compression=true
ccache -p
ccache -z
- run: pipx install meson==0.55.1
- run: pipx install meson==1.3.2
- run: |
export PATH=/usr/lib/ccache:${PATH}
CC="ccache gcc" CXX="ccache g++" /root/.local/bin/meson setup build
Expand Down Expand Up @@ -140,7 +140,7 @@ jobs:
ccache --set-config=compression=true
ccache -p
ccache -z
- run: pipx install meson==0.55.1
- run: pipx install meson==1.3.2
- run: |
export PATH=/usr/lib/ccache:${PATH}
CFLAGS="-Wno-unsafe-buffer-usage" CXXFLAGS="-Wno-unsafe-buffer-usage" CC="ccache clang" CXX="ccache clang++" /root/.local/bin/meson setup build
Expand Down Expand Up @@ -171,7 +171,7 @@ jobs:
name: System Information
command: cat /proc/cpuinfo /proc/meminfo
- run: dpkg --add-architecture i386
- run: pipx install meson==0.55.1
- run: pipx install meson==1.3.2
- run:
command: |
ccache --set-config=max_size='500M'
Expand Down Expand Up @@ -208,7 +208,7 @@ jobs:
name: System Information
command: cat /proc/cpuinfo /proc/meminfo
- run: dpkg --add-architecture i386
- run: pipx install meson==0.55.1
- run: pipx install meson==1.3.2
- run:
command: |
ccache --set-config=max_size='500M'
Expand Down
2 changes: 1 addition & 1 deletion .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ task:
install_dependencies_script:
- apt-get update
- apt-get install -y ninja-build ninja-build pipx python3-setuptools python3-wheel gcovr clang-17
- pipx install meson==0.55.1
- pipx install meson==0.64.0
configure_script:
- /root/.local/bin/meson setup build -Db_coverage=true -Db_sanitize=address,undefined -Db_lundef=false
build_script:
Expand Down
4 changes: 2 additions & 2 deletions .drone.star.disabled
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def main(ctx):
"echo 'APT::Acquire::Retries \"3\";' > /etc/apt/apt.conf.d/80-retries",
"apt-get update -y",
"apt-get install -y " + " ".join(packages),
"pip3 install meson==0.55.1",
"pip3 install meson==1.3.2",
"meson build -Db_coverage=true || (cat build/meson-logs/meson-log.txt; false)",
"ninja -C build -v test || (cat build/meson-logs/testlog.txt; false)",
],
Expand Down Expand Up @@ -102,7 +102,7 @@ def main(ctx):
# "cat /proc/cpuinfo",
# "apt-get update -y",
# "apt-get install -y " + " ".join(['ninja-build', 'git-core', 'python3-pip', 'gcovr', 'clang', 'curl']),
# "pip3 install meson==0.55.1",
# "pip3 install meson==1.3.2",
# "(cd test && sh -x ./native-aliases.sh)",
# "meson build -Db_coverage=true",
# "ninja -C build -v test",
Expand Down
Loading
Loading