Skip to content

Commit

Permalink
feat: updating exon (wheretrue#16)
Browse files Browse the repository at this point in the history
* feat: updating exon
* feat: bump rest of things
* build: update mamba provision
* build: try yum w/ openssl
* feat: manually add pthread
  • Loading branch information
tshauck authored Aug 2, 2023
1 parent 26fe92e commit 9ebce1a
Show file tree
Hide file tree
Showing 8 changed files with 134 additions and 234 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/Linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
- name: Additional Yum Packages
if: ${{ matrix.arch == 'linux_amd64_gcc4' }}
run: |
yum install -y autoconf bzip2-devel xz-devel curl-devel
yum install -y autoconf bzip2-devel xz-devel curl-devel openssl-devel
- name: Install CMake 3.21
shell: bash
Expand All @@ -84,11 +84,11 @@ jobs:
submodules: "true"

- name: Setup mamba
uses: mamba-org/provision-with-micromamba@main
uses: mamba-org/setup-micromamba@main
with:
environment-file: environment.yml
cache-downloads: true
cache-env: true
cache-environment: true

- name: Install latest nightly
uses: actions-rs/toolchain@v1
Expand All @@ -108,7 +108,7 @@ jobs:

# Build extension
- name: Build extension
shell: bash -l {0}
shell: bash -el {0}
env:
GEN: ninja
STATIC_LIBCPP: 1
Expand All @@ -118,7 +118,7 @@ jobs:
make release
- name: Test extension
shell: bash -l {0}
shell: bash -el {0}
continue-on-error: true
run: |
make test
Expand All @@ -136,15 +136,15 @@ jobs:
role-to-assume: arn:aws:iam::${{ secrets.AWS_ACCOUNT_ID }}:role/github-deploy-role

- name: upload to s3 no gcc
shell: bash -l {0}
shell: bash -el {0}
if: ${{ matrix.arch == 'linux_amd64' }}
env:
ENVIRONMENT: ${{ env.ENVIRONMENT }}
run: |
python bin/upload-artifacts.py
- name: upload to s3 gcc4
shell: bash -l {0}
shell: bash -el {0}
if: ${{ matrix.arch == 'linux_amd64_gcc4' }}
env:
ENVIRONMENT: ${{ env.ENVIRONMENT }}
Expand Down
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@ elseif(UNIX)
-lbz2
-llzma
-lcurl
-lpthread
${OPENSSL_LIBRARIES}
)
endif()
Expand Down
Loading

0 comments on commit 9ebce1a

Please sign in to comment.