pyDevSup doesn't know if we pass the path for python3 #57
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: Debian 12 | |
on: | |
push: | |
branches: [master] | |
paths-ignores: | |
- '**.md' | |
- '.github/workflows/linter.yml' | |
- '.github/workflows/macos.yml' | |
- '.github/workflows/docker-image.yml' | |
- '.github/workflows/linux.yml' | |
- 'docs/**' | |
- 'docker/**' | |
pull_request: | |
branches: [master] | |
jobs: | |
Debian12: | |
runs-on: ubuntu-latest | |
container: debian:bookworm-slim | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: Install required packages | |
run: | | |
apt update -y | |
apt 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 patch.pvxs.apply | |
make conf | |
make vars | |
make build | |
make install | |
- name: EPICS Environment Check | |
run: | | |
make exist | |