Revert "schemachanger: Implement CREATE DATABASE" #1635
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: EXPERIMENTAL GitHub actions testing | |
on: | |
pull_request: | |
types: [ opened, reopened, synchronize, edited ] | |
branches: [ master ] | |
jobs: | |
test_job: | |
runs-on: [self-hosted, basic_runner_group] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
# By default, checkout merges the PR into the current master. | |
# Instead, we want to check out the PR as is. | |
ref: ${{ github.event.pull_request.head.sha }} | |
- run: ./build/github/get-engflow-keys.sh | |
- run: bazel test //pkg:all_tests --config engflowpublic --config crosslinux --jobs 300 --tls_client_certificate=/home/agent/engflow.crt --tls_client_key=/home/agent/engflow.key --remote_download_minimal --bes_keywords=github_pr_number=${{ github.event.pull_request.number }} | |
- name: clean up | |
if: always() | |
run: rm -f /home/agent/engflow.* |