mirror of
https://github.com/ziglang/zig.git
synced 2024-11-27 07:32:44 +00:00
a7d215759e
- disable azure/linux - split probe/build/test steps for log clarity - add package step; enabled only when master/pull - add on-master-success pipeline; enabled only when master/pull
11 lines
166 B
Bash
Executable File
11 lines
166 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. ./ci/zinc/linux_base.sh
|
|
|
|
# Probe CPU/brand details.
|
|
echo "lscpu:"
|
|
(lscpu | sed 's,^, : ,') 1>&2
|
|
|
|
# Explicit exit helps show last command duration.
|
|
exit
|