fix: use no assert build temporarily #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build builddeps Container | ||
permissions: | ||
contents: read | ||
on: | ||
workflow_dispatch: | ||
branches: | ||
- dev-18 | ||
paths: | ||
- .github/workflows/build-ci-container.yml | ||
- 'docker/**' | ||
jobs: | ||
build-ci-container: | ||
if: github.repository_owner == 'seahorn' | ||
runs-on: ubuntu-latest | ||
permissions: | ||
packages: write | ||
steps: | ||
- name: Write Variables | ||
id: vars | ||
run: | | ||
tag=`date +%s` | ||
container_name="ghcr.io/$GITHUB_REPOSITORY_OWNER/seaurchin-llvm/buildpack-deps-seaurchin" | ||
echo "container-name=buildpack-deps-seaurchin" >> $GITHUB_OUTPUT | ||
echo "container-name-tag=$container_name:latest" >> $GITHUB_OUTPUT | ||
- name: Download seaurchin-llvm | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: seaurchin-llvm-build | ||
repository: seahorn/seaurchin-llvm | ||
github-token: ${{ secrets.seaurchin-llvm-read }} | ||
- name: Checkout seaurchin | ||
uses: actions/checkout@v4 | ||
- name: Display structure of downloaded seaurchin-llvm artefact | ||
run: ls -laH | ||