-
-
Notifications
You must be signed in to change notification settings - Fork 344
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1811 from McSinyx/sourcehut
Migrate Alpine, Fedora, FreeBSD CIs to SourceHut
- Loading branch information
Showing
6 changed files
with
51 additions
and
362 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
image: alpine/latest | ||
packages: | ||
- curl | ||
- gcc | ||
- libffi-dev | ||
- musl-dev | ||
- openssl-dev | ||
- python3-dev | ||
sources: | ||
- https://github.com/python-trio/trio | ||
tasks: | ||
- test: | | ||
python3 -m venv venv | ||
source venv/bin/activate | ||
cd trio | ||
CI_BUILD_ID=$JOB_ID CI_BUILD_URL=$JOB_URL ./ci.sh | ||
environment: | ||
CODECOV_TOKEN: 87cefb17-c44b-4f2f-8b30-1fff5769ce46 | ||
JOB_NAME: Alpine |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
image: fedora/rawhide | ||
packages: | ||
- python3-pip | ||
sources: | ||
- https://github.com/python-trio/trio | ||
tasks: | ||
- test: | | ||
python3 -m venv venv | ||
source venv/bin/activate | ||
cd trio | ||
CI_BUILD_ID=$JOB_ID CI_BUILD_URL=$JOB_URL ./ci.sh | ||
environment: | ||
CODECOV_TOKEN: 87cefb17-c44b-4f2f-8b30-1fff5769ce46 | ||
JOB_NAME: Fedora |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
image: freebsd/latest | ||
packages: | ||
- curl | ||
- python38 | ||
- py38-sqlite3 | ||
sources: | ||
- https://github.com/python-trio/trio | ||
tasks: | ||
- setup: sudo ln -s /usr/local/bin/bash /bin/bash | ||
- test: | | ||
python3.8 -m venv venv | ||
source venv/bin/activate | ||
cd trio | ||
CI_BUILD_ID=$JOB_ID CI_BUILD_URL=$JOB_URL ./ci.sh | ||
environment: | ||
CODECOV_TOKEN: 87cefb17-c44b-4f2f-8b30-1fff5769ce46 | ||
JOB_NAME: FreeBSD |
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
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
Oops, something went wrong.