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

Try self hosted #152

Closed
wants to merge 2 commits into from
Closed
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
2 changes: 1 addition & 1 deletion .github/workflows/agent-tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
defaults:
run:
working-directory: agent
runs-on: ubuntu-latest
runs-on: [self-hosted, linux, X64]
strategy:
matrix:
python: ["3.8", "3.10"]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cli-tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
defaults:
run:
working-directory: cli
runs-on: ubuntu-latest
runs-on: [self-hosted, linux, X64]
strategy:
matrix:
python: ["3.8", "3.10"]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/device-tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
defaults:
run:
working-directory: device-connectors
runs-on: ubuntu-latest
runs-on: [self-hosted, linux, X64]
strategy:
matrix:
python: ["3.8", "3.10"]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/server-charm-check-libs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
build:
name: Check charm libraries
runs-on: ubuntu-latest
runs-on: [self-hosted, linux, X64]
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/server-charm-release-edge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
build:
name: Release to Charmhub
runs-on: ubuntu-latest
runs-on: [self-hosted, linux, X64]
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/server-publish-oci-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ env:

jobs:
build-and-push-backend-image:
runs-on: ubuntu-latest
runs-on: [self-hosted, linux, X64]
permissions:
contents: read
packages: write
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/server-tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
defaults:
run:
working-directory: server
runs-on: ubuntu-latest
runs-on: [self-hosted, linux, X64]
strategy:
matrix:
python: ["3.8", "3.10"]
Expand Down
1 change: 1 addition & 0 deletions cli/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -71,3 +71,4 @@ Finally, to download the artifact tarball from the job, you can use the
$ testflinger-cli artifact [--filename <DEFAULT:artifact.tgz>] <job_id>
FOO
1 change: 1 addition & 0 deletions server/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -305,3 +305,4 @@ server will only return one job.
$ curl http://localhost:8000/v1/job/00000000-0000-0000-0000-000000000000/action \
-X POST --header "Content-Type: application/json" \
--data '{ "action":"cancel" }'
FOO
Loading