Skip to content

Commit

Permalink
fix publish result curl fail
Browse files Browse the repository at this point in the history
  • Loading branch information
phoebusm committed Nov 5, 2024
1 parent a950d13 commit 84678ec
Showing 1 changed file with 21 additions and 5 deletions.
26 changes: 21 additions & 5 deletions .github/workflows/analysis_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,31 @@ jobs:
if: github.ref == 'refs/heads/master'
needs: [benchmark_commits]
runs-on: ubuntu-22.04
container:
image: ubuntu:22.04 # Native runner doesn't allow setting up the ca softlinks required below
permissions:
contents: write

steps:
- name: Select Python
uses: actions/[email protected]
with:
python-version: "3.10"

- name: Prepare environment
shell: bash -el {0}
run: |
apt update
apt install -y git
python -m pip install arcticdb[Testing] "protobuf<5"
- name: Setup softlink for SSL
shell: bash -el {0}
run: |
mkdir -p /etc/pki/tls
ln -s /usr/lib/ssl/certs /etc/pki/tls/certs
ln -s /etc/ssl/certs/ca-certificates.crt /etc/pki/tls/certs/ca-bundle.crt
- uses: actions/[email protected]
with:
fetch-depth: 0
Expand All @@ -75,11 +96,6 @@ jobs:
aws_access_key: "${{ secrets.AWS_S3_ACCESS_KEY }}"
aws_secret_key: "${{ secrets.AWS_S3_SECRET_KEY }}"

- name: Install ArcticDB[Testing]
shell: bash -el {0}
run: |
pip install arcticdb[Testing] "protobuf<5"
- name: Publish results to Github Pages
shell: bash -el {0}
run: |
Expand Down

0 comments on commit 84678ec

Please sign in to comment.