Skip to content

Github Action: typo

Github Action: typo #6

Workflow file for this run

name: build
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [main]
pull_request:
branches: [main]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
# convert this to a matrix if builds differ between platforms
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ['ubuntu-latest']
steps:
- name: test
run: pwd; ls -la
- name: Check out epics
uses: actions/checkout@v4
with:
repository: epics-base/epics-base
ref: '7.0'
submodules: recursive
path: epics/base
- name: Check out assemble_synApps
uses: actions/checkout@v4
with:
path: epics/assemble_synApps
- name: Install required packages
run: |
pwd; ls -la; ls -la *
sudo apt-get install -y git build-essential curl libusb-dev libusb-1.0-0-dev re2c x11proto-dev libx11-dev libxext-dev
- name: Build EPICS
run: |
pwd
cd epics/epics-base/base
make distclean
make