Skip to content

Commit

Permalink
Remove non completing step in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
tomtrafford committed Oct 11, 2023
1 parent ab6d6e6 commit 31b334f
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions .github/workflows/code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ on:
- cron: '0 8 * * MON'

# Global environment
env:
# EPICS Base version for system block IOC
EPICS_BASE_VER: R3.14.12.7
EPICS_BASE_DIR: epics_base
# env:
# # EPICS Base version for system block IOC
# EPICS_BASE_VER: R3.14.12.7
# EPICS_BASE_DIR: epics_base

# Jobs
jobs:
Expand Down Expand Up @@ -57,23 +57,23 @@ jobs:
git config --global user.email "[email protected]"
git config --global user.name "Mr. Malcolm"
- name: Cache EPICS Base
uses: actions/cache@v2
id: epics-base-cache
with:
path: ${{ env.EPICS_BASE_DIR }}
key: epics_base-${{ runner.os }}-${{ env.EPICS_BASE_VER }}

- name: Install EPICS Base
if: steps.epics-base-cache.outputs.cache-hit != 'true'
run: |
wget -nv https://github.com/epics-base/epics-base/archive/${EPICS_BASE_VER}.tar.gz
tar -zxf ${EPICS_BASE_VER}.tar.gz
mv epics-base-${EPICS_BASE_VER} ${EPICS_BASE_DIR}
make -isj -C ${EPICS_BASE_DIR}/
- name: Set EPICS Base path
run: echo "EPICS_BASE=`pwd`/${EPICS_BASE_DIR}" >> $GITHUB_ENV
# - name: Cache EPICS Base
# uses: actions/cache@v2
# id: epics-base-cache
# with:
# path: ${{ env.EPICS_BASE_DIR }}
# key: epics_base-${{ runner.os }}-${{ env.EPICS_BASE_VER }}

# - name: Install EPICS Base
# if: steps.epics-base-cache.outputs.cache-hit != 'true'
# run: |
# wget -nv https://github.com/epics-base/epics-base/archive/${EPICS_BASE_VER}.tar.gz
# tar -zxf ${EPICS_BASE_VER}.tar.gz
# mv epics-base-${EPICS_BASE_VER} ${EPICS_BASE_DIR}
# make -isj -C ${EPICS_BASE_DIR}/

# - name: Set EPICS Base path
# run: echo "EPICS_BASE=`pwd`/${EPICS_BASE_DIR}" >> $GITHUB_ENV

- name: Install Python dependencies
run: |
Expand Down

0 comments on commit 31b334f

Please sign in to comment.