DO NOT MERGE: test workflow #1466
Workflow file for this run
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: 'Release' | ||
run-name: K Framework Release ${{ github.ref_name }} | ||
on: | ||
pull_request: | ||
types: [opened, edited, reopened, synchronize] | ||
branches: | ||
- 'develop' | ||
concurrency: | ||
group: ${{ github.workflow }} | ||
jobs: | ||
set-release-id: | ||
name: 'Set Release ID' | ||
runs-on: ubuntu-24.04 | ||
steps: | ||
- name: 'Get release_id' | ||
run: echo "release_id=$(jq --raw-output '.release.id' "$GITHUB_EVENT_PATH")" >> "${GITHUB_OUTPUT}" | ||
id: release | ||
outputs: | ||
release_id: ${{ steps.release.outputs.release_id }} | ||
source-tarball: | ||
name: 'Create source tarball' | ||
runs-on: ubuntu-latest | ||
environment: production | ||
steps: | ||
- name: 'Check out code' | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
- name: 'Create source tarball' | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.JENKINS_GITHUB_PAT }} | ||
run: | | ||
set -x | ||
version=$(cat package/version) | ||
tarball=kframework-${version}-src.tar.gz | ||
# shellcheck disable=SC2038 | ||
find . -name .git | xargs rm -r | ||
CURDIR=$(pwd) | ||
cd .. | ||
tar czvf "${tarball}" "$(basename "${CURDIR}")" | ||
mv "${tarball}" "${CURDIR}/" | ||
cd "${CURDIR}" | ||
#gh release upload --repo runtimeverification/k --clobber "v${version}" "${tarball}" | ||
ubuntu-noble: | ||
name: 'K Ubuntu Noble Package' | ||
runs-on: [self-hosted, linux, normal] | ||
timeout-minutes: 90 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: 'Build and Test Package' | ||
uses: ./.github/actions/test-package | ||
with: | ||
os: ubuntu | ||
distro: noble | ||
llvm: 16 | ||
pkg-name: kframework_amd64_ubuntu_noble.deb | ||
build-package: package/debian/build-package noble kframework | ||
test-package: package/debian/test-package | ||
- name: 'Upload the package built to the Summary Page' | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: kframework_amd64_ubuntu_noble.deb | ||
path: kframework_amd64_ubuntu_noble.deb | ||
if-no-files-found: error | ||
retention-days: 1 | ||
- name: 'Upload Package to Release' | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.JENKINS_GITHUB_PAT }} | ||
run: | | ||
set -x | ||
version=$(cat package/version) | ||
cp kframework_amd64_ubuntu_noble.deb "kframework_${version}_amd64_ubuntu_noble.deb" | ||
#gh release upload --repo runtimeverification/k --clobber "v${version}" "kframework_${version}_amd64_ubuntu_noble.deb" | ||
- name: 'Build, Test, and Push Dockerhub Image' | ||
shell: bash {0} | ||
env: | ||
DOCKERHUB_PASSWORD: ${{ secrets.DOCKERHUB_PASSWORD }} | ||
DOCKERHUB_REPO: runtimeverificationinc/kframework-k | ||
run: | | ||
set -euxo pipefail | ||
version=$(cat package/version) | ||
version_tag=ubuntu-noble-${version} | ||
docker login --username rvdockerhub --password "${DOCKERHUB_PASSWORD}" | ||
docker image build . --file package/docker/Dockerfile.ubuntu-noble --tag "${DOCKERHUB_REPO}:${version_tag}" | ||
docker run --name "k-package-docker-test-noble-${GITHUB_SHA}" --rm -it --detach "${DOCKERHUB_REPO}:${version_tag}" | ||
docker exec -t "k-package-docker-test-noble-${GITHUB_SHA}" bash -c 'cd ~ && echo "module TEST imports BOOL endmodule" > test.k' | ||
docker exec -t "k-package-docker-test-noble-${GITHUB_SHA}" bash -c 'cd ~ && kompile test.k --backend llvm' | ||
docker exec -t "k-package-docker-test-noble-${GITHUB_SHA}" bash -c 'cd ~ && kompile test.k --backend haskell' | ||
docker exec -t "k-package-docker-test-noble-${GITHUB_SHA}" bash -c 'cd ~ && pyk kompile test.k --backend llvm' | ||
docker exec -t "k-package-docker-test-noble-${GITHUB_SHA}" bash -c 'cd ~ && pyk kompile test.k --backend haskell' | ||
#docker image push "${DOCKERHUB_REPO}:${version_tag}" | ||
- name: 'Clean up Docker Container' | ||
if: always() | ||
run: | | ||
docker stop --time=0 "k-package-docker-test-noble-${GITHUB_SHA}" | ||
- name: On Failure, Upload the kore-exec.tar.gz file to the Summary Page | ||
if: failure() | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: kore-exec.tar.gz | ||
path: | | ||
**/kore-exec.tar.gz | ||
name: 'Publish pyk' | ||
runs-on: ubuntu-latest | ||
environment: production | ||
permissions: | ||
id-token: write | ||
needs: release | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Install Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.10' | ||
- name: Install Poetry | ||
uses: Gr1N/setup-poetry@v9 | ||
- name: Build pyk | ||
working-directory: pyk | ||
run: | | ||
make build | ||
- name: Publish pyk to PyPI | ||
uses: pypa/gh-action-pypi-publish@release/v1 | ||
with: | ||
packages-dir: pyk/dist | ||
user: __token__ | ||
password: ${{ secrets.PYPI_TOKEN }} | ||
- name: Wait for PyPi to publish Pyk | ||
run: | | ||
while true; do | ||
VERSION=$(cat package/version) | ||
if curl --fail --silent --location --head "https://pypi.org/project/kframework/$VERSION"; then | ||
break | ||
fi | ||
sleep 10 | ||
done | ||
notify-dependents: | ||
name: 'Notify Dependents' | ||
runs-on: ubuntu-latest | ||
needs: pyk-publish | ||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v4 | ||
- name: 'Update dependents' | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.JENKINS_GITHUB_PAT }} | ||
run: | | ||
set -x | ||
VERSION=$(cat package/version) | ||
curl --fail \ | ||
-X POST \ | ||
-H "Accept: application/vnd.github+json" \ | ||
-H "Authorization: Bearer ${GITHUB_TOKEN}" \ | ||
-H "X-GitHub-Api-Version: 2022-11-28" \ | ||
https://api.github.com/repos/runtimeverification/devops/dispatches \ | ||
-d '{"event_type":"on-demand-test","client_payload":{"repo":"runtimeverification/k","version":"'"${VERSION}"'"}}' | ||
pyk-build-docs: | ||
name: 'Build Pyk Documentation' | ||
needs: ubuntu-jammy | ||
runs-on: [self-hosted, linux, normal] | ||
timeout-minutes: 30 | ||
steps: | ||
- name: 'Check out code' | ||
uses: actions/checkout@v4 | ||
- name: 'Download K package from the Summary Page' | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: kframework_amd64_ubuntu_jammy.deb | ||
- name: 'Set up Docker' | ||
uses: ./.github/actions/with-k-docker | ||
with: | ||
container-name: k-pyk-docs-${{ github.sha }} | ||
k-deb-path: kframework_amd64_ubuntu_jammy.deb | ||
install-backend-debs: false | ||
- name: 'Build documentation in Docker container' | ||
run: docker exec -u user k-pyk-docs-${{ github.sha }} make docs | ||
- name: 'Copy documentation from Docker container' | ||
run: docker cp k-pyk-docs-${{ github.sha }}:/home/user/docs/build pyk-docs | ||
- name: 'Upload pyk documentation to the Summary Page' | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: pyk-docs | ||
path: pyk-docs | ||
if-no-files-found: error | ||
retention-days: 1 | ||
- name: 'Tear down Docker' | ||
if: always() | ||
run: docker stop --time=0 k-pyk-docs-${{ github.sha }} | ||
gh-pages: | ||
name: 'GitHub Pages deployment' | ||
runs-on: ubuntu-24.04 | ||
timeout-minutes: 30 | ||
needs: [pyk-build-docs, pyk-publish] | ||
steps: | ||
- name: 'Install pandoc/texlive/calibre' | ||
run: | | ||
sudo apt update --yes | ||
sudo apt install --yes wget texlive-xetex libegl1 libopengl0 | ||
sudo wget -nv -O- https://download.calibre-ebook.com/linux-installer.sh | sh /dev/stdin version=6.29.0 | ||
sudo wget https://github.com/jgm/pandoc/releases/download/2.18/pandoc-2.18-1-amd64.deb -O /tmp/pandoc.deb | ||
sudo dpkg -i /tmp/pandoc.deb | ||
- name: 'Checkout code and set up web build' | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
path: gh-pages | ||
token: ${{ secrets.JENKINS_GITHUB_PAT }} | ||
fetch-depth: 0 | ||
- name: 'Checkout PL Tutorial code' | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: runtimeverification/pl-tutorial | ||
path: gh-pages/k-distribution/pl-tutorial | ||
token: ${{ secrets.JENKINS_GITHUB_PAT }} | ||
- working-directory: gh-pages | ||
run: | | ||
git config --global user.name rv-jenkins | ||
git config --global user.email [email protected] | ||
git checkout --orphan gh-pages origin/master | ||
- name: 'Build webpage' | ||
working-directory: gh-pages | ||
run: | | ||
export PATH="$PATH":/opt/calibre | ||
cd web | ||
npm install | ||
npm run build | ||
npm run build-book | ||
npm run build-sitemap | ||
cd - | ||
mv web/public_content ./ | ||
# shellcheck disable=SC2046 | ||
rm -rf $(find . -maxdepth 1 -not -name public_content -a -not -name .git -a -not -path . -a -not -path .. -a -not -name CNAME) | ||
mv public_content/* ./ | ||
rm -rf public_content | ||
touch .nojekyll | ||
- name: 'Download pyk documentation from the Summary Page' | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: pyk-docs | ||
path: gh-pages/pyk | ||
- name: 'Push gh-pages branch' | ||
working-directory: gh-pages | ||
run: | | ||
set -x | ||
git add ./ | ||
git commit -m 'gh-pages: Updated the website' | ||
git push --force origin gh-pages |