share the PYTHON_CMD to pyDevSup source #41
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
--- | |
name: Rocky 9 | |
on: | |
push: | |
branches: [master] | |
paths-ignores: | |
- '**.md' | |
- '.github/workflows/linter.yml' | |
- '.github/workflows/macos.yml' | |
- '.github/workflows/docker-image.yml' | |
- '.github/workflows/linux.yml' | |
- '.github/workflows/debian*.yml' | |
- 'docs/**' | |
- 'docker/**' | |
pull_request: | |
branches: [master] | |
jobs: | |
Rocky9: | |
runs-on: ubuntu-latest | |
container: rockylinux/rockylinux:9 | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: Install required packages | |
run: | | |
dnf install -y git make sudo bash wget unzip | |
git clone https://github.com/jeonghanlee/pkg_automation | |
bash pkg_automation/pkg_automation.bash -y | |
git clone https://github.com/jeonghanlee/uldaq-env | |
make -C uldaq-env/ github | |
- name: EPICS installation | |
run: | | |
make init | |
make conf | |
make patch.pvxs.apply | |
make vars | |
make build | |
make install | |
- name: EPICS Environment Check | |
run: | | |
make exist |