Ubuntu Pastebin

Paste from LBo at Sun, 17 Jul 2016 21:55:15 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: golang17
version: 1
summary: Go programming language compiler
description: Go programming language compiler
confinement: devmode

parts:

  go14:
    plugin: bash
    install: false
    source: https://storage.googleapis.com/golang/go1.4.3.src.tar.gz
    # environment:
    #   SNAPCRAFT_STAGE: $SNAPCRAFT_STAGE
    #   CGO_ENABLED: 0 # Fix for https://github.com/golang/go/issues/13114
    #   go 1.4.4 should have a fix for that
    # script: make.bash
    script: src/bootstrap.sh
    stage:
      - -*

  go17:
    plugin: bash
    install: true
    source: https://storage.googleapis.com/golang/go1.7rc1.src.tar.gz
    # environment:
    #   SNAPCRAFT_STAGE: $SNAPCRAFT_STAGE
    #   CGO_ENABLED: 1
    script: src/make.sh
    stage:
      - -make.sh
    snap:
      - -make.sh # why?
    after:
      - go14

apps:
  go17:
    command: ./bin/go
Download as text