LLVM: Bump to LLVM 18 #204
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: Docker Image | |
on: | |
[push, pull_request] | |
jobs: | |
Docker: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout DG | |
uses: actions/checkout@v3 | |
- name: Build the Docker image | |
run: | | |
docker build . --file Dockerfile \ | |
--build-arg GIT_REF=$GITHUB_REF \ | |
--build-arg GIT_REPO=$GITHUB_REPOSITORY \ | |
--tag dg:$(date +%s) |