Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: remove qa workflows #1837

Merged
merged 1 commit into from
Jul 23, 2024
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
108 changes: 0 additions & 108 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -498,99 +498,6 @@ jobs:
find artifacts -mindepth 2 -type f -exec mv -t artifacts {} +
go install github.com/tcnksm/ghr@v0.16.2
ghr -t ${GITHUB_TOKEN} -u ${CIRCLE_PROJECT_USERNAME} -r ${CIRCLE_PROJECT_REPONAME} -c ${CIRCLE_SHA1} -delete -draft ${TAG} ./artifacts/
linux-qa:
machine:
image: default
resource_class: medium
steps:
- checkout
- run:
name: "Install Rust"
command: |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
- run:
name: "Install Shuttle"
command: cargo install cargo-shuttle --path ./cargo-shuttle
- run: cargo shuttle --version
- run:
name: Login
command: |
cargo shuttle login --api-key ${SHUTTLE_API_KEY}
- run:
name: QA
command: ./.circleci/qa.sh linux
environment:
SHUTTLE_API: https://api.unstable.shuttle.rs
- run: git submodule update --init
# - run:
# name: Test Docker
# command: ./.circleci/qa-docker.sh
mac-qa:
macos:
xcode: 15.3.0
resource_class: macos.m1.medium.gen1
steps:
- checkout
- run:
name: "Install Rust"
command: |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
- run:
name: "Install Shuttle"
command: cargo install cargo-shuttle --path ./cargo-shuttle
- run: cargo shuttle --version
- run:
name: Login
command: |
cargo shuttle login --api-key ${SHUTTLE_API_KEY}
- run:
name: QA
command: ./.circleci/qa.sh mac
environment:
SHUTTLE_API: https://api.unstable.shuttle.rs
- run: git submodule update --init
# We can't run Docker inside the MacOs executor at this time
# https://support.circleci.com/hc/en-us/articles/360045029591-Can-I-use-Docker-within-the-macOS-executor-
# - run:
# name: "Install Docker"
# command: |
# brew install --cask docker
# - run:
# name: Test Docker
# command: ./.circleci/qa-docker.sh
windows-qa:
executor:
name: win/server-2022
size: medium
shell: powershell.exe
environment:
CARGO_NET_GIT_FETCH_WITH_CLI: "true"
steps:
- checkout
- run:
name: Install Rust
command: |
wget -OutFile "C:\rustup-init.exe" https://static.rust-lang.org/rustup/dist/x86_64-pc-windows-msvc/rustup-init.exe
C:\rustup-init.exe -y --default-toolchain 1.77.0 --target x86_64-pc-windows-msvc
- run:
name: "Install Shuttle"
command: ..\.cargo\bin\cargo.exe install cargo-shuttle --path ./cargo-shuttle
- run: ..\.cargo\bin\cargo.exe shuttle --version
- run:
name: Login
command: |
..\.cargo\bin\cargo.exe shuttle login --api-key $env:SHUTTLE_API_KEY
- run:
name: QA
command: ./.circleci/qa.ps1
environment:
SHUTTLE_API: https://api.unstable.shuttle.rs
- run: git submodule update --init
# We can't run linux containers on the Windows executor at this time
# https://circleci.com/docs/using-windows/#known-issues-and-limitations
# - run:
# name: Test Docker
# command: ./.circleci/qa-docker.ps1
publish-crate:
parameters:
path:
Expand Down Expand Up @@ -763,21 +670,6 @@ workflows:
requires:
- build-and-push-unstable
- approve-deploy-images-unstable
### TODO: Fix and re-enable this
# qa:
# jobs:
# - linux-qa:
# filters:
# branches:
# only: production
# - mac-qa:
# filters:
# branches:
# only: production
# - windows-qa:
# filters:
# branches:
# only: production
build-binaries:
jobs:
- build-binaries-linux:
Expand Down
32 changes: 0 additions & 32 deletions .circleci/qa-docker.ps1

This file was deleted.

19 changes: 0 additions & 19 deletions .circleci/qa-docker.sh

This file was deleted.

45 changes: 0 additions & 45 deletions .circleci/qa.ps1

This file was deleted.

32 changes: 0 additions & 32 deletions .circleci/qa.sh

This file was deleted.