-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into dependabot/pip/src/tests/ras/utils/reboote…
…rs/powerswitch/urllib3-1.26.19
- Loading branch information
Showing
9 changed files
with
83 additions
and
55 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,32 @@ | ||
name: Build | ||
|
||
on: | ||
pull_request: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
Build: | ||
runs-on: ubuntu-latest | ||
container: | ||
# The pmdk-tests repository struggles to build on any modern distro. | ||
# Rocky 8 was hand-picked to meet the repository requirements. | ||
# On Rocky 9 the libdaxctl.h header is placed in daxctl/ instead of ndctl/. | ||
image: ghcr.io/pmem/pmdk:2.1-rockylinux-8-x86_64 | ||
options: --user root # WA the messed-up access rights inside the container | ||
steps: | ||
- name: Clone the pmdk-test repo | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 1 # WA actions/checkout#664 | ||
|
||
- name: Install dependencies | ||
run: > | ||
sudo dnf install --assumeyes | ||
cmake libpmem-devel libpmemobj-devel libpmempool-devel ndctl-devel | ||
- name: Create the build directory | ||
run: mkdir build | ||
|
||
- name: Build sources | ||
working-directory: build | ||
run: cmake .. && make -j |
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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
.* | ||
!.github | ||
!.gitignore | ||
!.gitattributes | ||
!.clang-format | ||
|
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
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
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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
certifi==2022.12.7 | ||
certifi==2023.7.22 | ||
chardet==3.0.4 | ||
idna==2.6 | ||
idna==3.7 | ||
lxml==4.9.1 | ||
requests==2.31.0 | ||
urllib3==1.26.19 |