Skip to content

Commit

Permalink
CI: The base Ubuntu version doesn't matter for Docker
Browse files Browse the repository at this point in the history
  • Loading branch information
oprypin committed Nov 27, 2021
1 parent cc4bc5c commit 520a070
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion .github/workflows/ci.yml.ecr
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,11 @@ jobs:
<% matrix.each_with_index(1) do |m, m_i| %>
job<%= m_i %>:
name: '<%= m[:os] %><%= " #{m[:os_ver]}" if m[:os_ver] %>: SFML <%= m[:sfml] %>, Crystal <%= m[:crystal] %>'
runs-on: <%= m[:os].downcase %>-<%= m[:os_ver] || "latest" %>
<% if m[:docker] %>
container: <%= m[:docker] %>
runs-on: ubuntu-latest
<% else %>
runs-on: <%= m[:os].downcase %>-<%= m[:os_ver] || "latest" %>
<% end %>
steps:
- name: Download CrSFML source
Expand Down

0 comments on commit 520a070

Please sign in to comment.