1
Files

35 lines
898 B
YAML
Raw Permalink Normal View History

# Copyright 2023 Uber Technologies, Inc.
# Licensed under the MIT License
2023-02-05 16:56:24 +00:00
steps:
- label: "Test"
command: ci/test
2023-02-19 21:48:09 -08:00
- label: "Lint"
command: ci/lint
- label: "List Platforms"
command: ci/list_toolchains_platforms
- label: "Test Release and Launcher scripts"
command: |
git config --global user.email "buildkite@example.com"
git config --global user.name "Buildkite Bot"
echo "--- ci/release"
ci/release
echo "--- ci/launcher"
ci/launcher
- label: "Test Launcher on wine64"
plugins:
- docker#v5.5.0:
image: "debian:stable"
command: |
apt-get update && apt-get install --no-install-recommends -y \
wine64 python3 ca-certificates
ci/launcher-wine64
- label: "mod-tidy and update-repos"
command: |
tools/mod-tidy
git diff --exit-code
2023-02-05 16:56:24 +00:00
agents:
- "queue=init"
- "docker=*"