Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 7 additions & 18 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# The base build and publish jobs are generated by sbt-github-actions.
# The reusable native job and its trigger are maintained in this file.
# This file was automatically generated by sbt-github-actions using the
# githubWorkflowGenerate task. You should add and commit this file to
# your git repository. It goes without saying that you shouldn't edit
# this file by hand! Instead, if you wish to make changes, you should
# change your sbt build configuration to revise the workflow description
# to meet your needs, then regenerate this file.

name: Continuous Integration

Expand All @@ -9,13 +13,6 @@ on:
push:
branches: ['**']
tags: [v*]
workflow_dispatch:
inputs:
build_native_executable:
description: Build the native executables
required: true
default: false
type: boolean

env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -44,17 +41,9 @@ jobs:
- name: Build project and docs
run: sbt 'test; docs/docusaurusCreateSite'

native:
name: Build Native Executables
if: >-
github.ref == 'refs/heads/master' ||
startsWith(github.ref, 'refs/tags/v') ||
(github.event_name == 'workflow_dispatch' && inputs.build_native_executable)
uses: ./.github/workflows/native-image.yml

publish:
name: Publish Artifacts
needs: [build, native]
needs: [build]
if: github.event_name != 'pull_request' && (startsWith(github.ref, 'refs/tags/v'))
strategy:
matrix:
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.12.14
sbt.version=1.12.15