Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
rscohn2 committed Feb 5, 2024
1 parent fbb4659 commit 47a2a55
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,26 +15,26 @@ jobs:
checks:
runs-on: ${{ github.repository_owner == 'oneapi-src' && 'intel-ubuntu-latest' || 'ubuntu-latest' }}
steps:
- uses: actions/checkout@b4ffde6
- uses: actions/setup-python@0a5c615
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c
with:
python-version: '3.10'
cache: 'pip'
- name: Checks
uses: pre-commit/action@646c83f
uses: pre-commit/action@646c83fcd040023954eafda54b4db0192ce70507

build:
runs-on: ${{ github.repository_owner == 'oneapi-src' && 'intel-ubuntu-latest' || 'ubuntu-latest' }}
steps:
- uses: actions/checkout@b4ffde6
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Install ubuntu prerequisites
run: |
sudo apt update -qq
xargs -a ubuntu-packages.txt sudo apt install -qq
curl -s https://www.doxygen.nl/files/doxygen-1.9.6.linux.bin.tar.gz -o /tmp/dox.tgz
sudo tar zxf /tmp/dox.tgz -C /usr/local
sudo ln -s /usr/local/doxygen*/bin/* /usr/bin
- uses: actions/setup-python@0a5c615
- uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c
with:
python-version: '3.10'
cache: 'pip'
Expand All @@ -57,7 +57,7 @@ jobs:
cp -r build/html/* site/spec
cp build/latex/*.pdf site/spec
- name: Archive site
uses: actions/upload-artifact@26f96df
uses: actions/upload-artifact@26f96dfa697d77e81fd5907df203aa23a56210a8
with:
name: site
path: site
Expand All @@ -68,12 +68,12 @@ jobs:
runs-on: ${{ github.repository_owner == 'oneapi-src' && 'intel-ubuntu-latest' || 'ubuntu-latest' }}
steps:
- name: Checkout gh-pages
uses: actions/checkout@b4ffde6
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
with:
ref: gh-pages
path: gh-pages
- name: Retrieve site
uses: actions/download-artifact@6b208ae
uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935
with:
name: site
path: gh-pages
Expand Down

0 comments on commit 47a2a55

Please sign in to comment.