Change to forgejo.
This commit is contained in:
parent
4d9a980471
commit
f86b162889
6 changed files with 21 additions and 16 deletions
|
@ -4,16 +4,18 @@ on: [push, pull_request]
|
|||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
runs-on: docker
|
||||
container:
|
||||
image: node:22-bookworm
|
||||
|
||||
steps:
|
||||
- name: Update package list
|
||||
run: |
|
||||
sudo apt-get update
|
||||
apt-get update
|
||||
|
||||
- name: Install git
|
||||
run: |
|
||||
sudo apt-get install -y git
|
||||
apt-get install -y git
|
||||
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v2
|
||||
|
@ -31,7 +33,7 @@ jobs:
|
|||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
sudo apt-get install -y libhdf5-dev limesuite liblimesuite-dev automake gcc pkg-config build-essential python-is-python3
|
||||
apt-get install -y libhdf5-dev limesuite liblimesuite-dev automake gcc pkg-config build-essential python-is-python3
|
||||
|
||||
- name: Install the package
|
||||
run: |
|
|
@ -4,11 +4,10 @@ on: [push, pull_request]
|
|||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
runs-on: docker
|
||||
container:
|
||||
image: archlinux:latest
|
||||
options: --privileged
|
||||
options: '--privileged'
|
||||
|
||||
steps:
|
||||
- name: Install git
|
|
@ -16,18 +16,20 @@ jobs:
|
|||
|
||||
deploy:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
runs-on: docker
|
||||
container:
|
||||
image: node:22-bookworm
|
||||
|
||||
# needs: [test]
|
||||
|
||||
steps:
|
||||
- name: Update package list
|
||||
run: |
|
||||
sudo apt-get update
|
||||
apt-get update
|
||||
|
||||
- name: Install git
|
||||
run: |
|
||||
sudo apt-get install -y git
|
||||
apt-get install -y git
|
||||
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v2
|
|
@ -16,18 +16,20 @@ jobs:
|
|||
|
||||
deploy:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
runs-on: docker
|
||||
container:
|
||||
image: node:22-bookworm
|
||||
|
||||
# needs: [test]
|
||||
|
||||
steps:
|
||||
- name: Update package list
|
||||
run: |
|
||||
sudo apt-get update
|
||||
apt-get update
|
||||
|
||||
- name: Install git
|
||||
run: |
|
||||
sudo apt-get install -y git
|
||||
apt-get install -y git
|
||||
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v2
|
|
@ -1,6 +1,6 @@
|
|||
# Python Bindings for LimeDriver
|
||||
|
||||
This is a Python package for the [LimeDriver](https://github.com/nqrduck/LimeDriver/) library.
|
||||
This is a Python package for the [LimeDriver](https://git.private.coffee/nqrduck/LimeDriver/) library.
|
||||
|
||||
## Dependencies
|
||||
|
||||
|
|
|
@ -44,8 +44,8 @@ convention = "google"
|
|||
|
||||
[project.urls]
|
||||
"Homepage" = "https://nqrduck.cool"
|
||||
"Bug Tracker" = "https://github.com/nqrduck/limedriverbindings/issues"
|
||||
"Source Code" = "https://github.com/nqrduck/limedriverbindings"
|
||||
"Bug Tracker" = "https://git.private.coffee/nqrduck/limedriverbindings/issues"
|
||||
"Source Code" = "https://git.private.coffee/nqrduck/limedriverbindings"
|
||||
|
||||
[tool.hatch.build.targets.wheel]
|
||||
packages = ["src/limedriver"]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue