Skip to content

Commit

Permalink
GithubActionsCI(snap): switch from 18.04 to 20.04
Browse files Browse the repository at this point in the history
The reason is twofold:
- Ubuntu 20.04 is finally available according to [1].
- Builds with Ubuntu 18.04 have started failing with this
error ([2], [3]):
```
Failed to update the package cache: Some files could not be downloaded:

W:GPG error: https://storage.googleapis.com/bazel-apt stable InRelease: The following signatures were invalid: EXPKEYSIG 3D5919B448457EE0 Bazel Developer (Bazel APT repository key) <[email protected]>
E:The repository 'https://storage.googleapis.com/bazel-apt stable InRelease' is not signed.
```

This is essentially trying again [4] (reverting [5]) but in the
master branch.

[1] actions/runner-images#228
[2] https://github.com/nblockchain/geewallet/runs/735263044
[3] https://github.com/nblockchain/geewallet/runs/735211396
[4] de59e12
[5] 2ce094f
  • Loading branch information
knocte committed Jun 3, 2020
1 parent a5aee27 commit 40e37be
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
name: ubuntu

on:
push:
tags:
- '*'
on: [push]

jobs:
ubuntu-snap-build:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v1
- name: Generate snap package
Expand All @@ -24,7 +21,7 @@ jobs:

ubuntu-snap-upload:
needs: ubuntu-snap-build
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v1
- name: Download artifact from previous job
Expand Down
2 changes: 1 addition & 1 deletion snap/snapcraft.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: gwallet
base: core18 # the base snap is the execution environment for this snap
base: core20 # the base snap is the execution environment for this snap
version: '0.3.209.0' # just for humans, typically '1.2+git' or '1.3.2'
summary: minimalistic cryptocurrency brainwallet # 79 char long summary
description: |
Expand Down

0 comments on commit 40e37be

Please sign in to comment.