DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] ci: fix arm64 config filename
@ 2019-03-29 15:55 David Marchand
  2019-03-29 15:55 ` David Marchand
  2019-03-29 16:14 ` Aaron Conole
  0 siblings, 2 replies; 6+ messages in thread
From: David Marchand @ 2019-03-29 15:55 UTC (permalink / raw)
  To: thomas; +Cc: dev

The ARM64 config file has been renamed in the commit
ae2f2fee247a ("build: rename linuxapp to linux in meson cross files").

Fixes: 99889bd85228 ("ci: introduce Travis builds for GitHub repositories")
Signed-off-by: David Marchand <david.marchand@redhat.com>
---
 .ci/linux-build.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.ci/linux-build.sh b/.ci/linux-build.sh
index 4eb7c3c..d5783c1 100755
--- a/.ci/linux-build.sh
+++ b/.ci/linux-build.sh
@@ -16,7 +16,7 @@ trap on_error EXIT
 
 if [ "$AARCH64" = "1" ]; then
     # convert the arch specifier
-    OPTS="$OPTS --cross-file config/arm/arm64_armv8_linuxapp_gcc"
+    OPTS="$OPTS --cross-file config/arm/arm64_armv8_linux_gcc"
 fi
 
 OPTS="$OPTS --default-library=$DEF_LIB"
-- 
1.8.3.1

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [dpdk-dev] [PATCH] ci: fix arm64 config filename
  2019-03-29 15:55 [dpdk-dev] [PATCH] ci: fix arm64 config filename David Marchand
@ 2019-03-29 15:55 ` David Marchand
  2019-03-29 16:14 ` Aaron Conole
  1 sibling, 0 replies; 6+ messages in thread
From: David Marchand @ 2019-03-29 15:55 UTC (permalink / raw)
  To: thomas; +Cc: dev

The ARM64 config file has been renamed in the commit
ae2f2fee247a ("build: rename linuxapp to linux in meson cross files").

Fixes: 99889bd85228 ("ci: introduce Travis builds for GitHub repositories")
Signed-off-by: David Marchand <david.marchand@redhat.com>
---
 .ci/linux-build.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.ci/linux-build.sh b/.ci/linux-build.sh
index 4eb7c3c..d5783c1 100755
--- a/.ci/linux-build.sh
+++ b/.ci/linux-build.sh
@@ -16,7 +16,7 @@ trap on_error EXIT
 
 if [ "$AARCH64" = "1" ]; then
     # convert the arch specifier
-    OPTS="$OPTS --cross-file config/arm/arm64_armv8_linuxapp_gcc"
+    OPTS="$OPTS --cross-file config/arm/arm64_armv8_linux_gcc"
 fi
 
 OPTS="$OPTS --default-library=$DEF_LIB"
-- 
1.8.3.1


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [dpdk-dev] [PATCH] ci: fix arm64 config filename
  2019-03-29 15:55 [dpdk-dev] [PATCH] ci: fix arm64 config filename David Marchand
  2019-03-29 15:55 ` David Marchand
@ 2019-03-29 16:14 ` Aaron Conole
  2019-03-29 16:14   ` Aaron Conole
  2019-03-29 23:02   ` Thomas Monjalon
  1 sibling, 2 replies; 6+ messages in thread
From: Aaron Conole @ 2019-03-29 16:14 UTC (permalink / raw)
  To: David Marchand; +Cc: thomas, dev

David Marchand <david.marchand@redhat.com> writes:

> The ARM64 config file has been renamed in the commit
> ae2f2fee247a ("build: rename linuxapp to linux in meson cross files").
>
> Fixes: 99889bd85228 ("ci: introduce Travis builds for GitHub repositories")
> Signed-off-by: David Marchand <david.marchand@redhat.com>
> ---

Thanks for the fix - I'll drop it from my testing series.

Acked-by: Aaron Conole <aconole@redhat.com>

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [dpdk-dev] [PATCH] ci: fix arm64 config filename
  2019-03-29 16:14 ` Aaron Conole
@ 2019-03-29 16:14   ` Aaron Conole
  2019-03-29 23:02   ` Thomas Monjalon
  1 sibling, 0 replies; 6+ messages in thread
From: Aaron Conole @ 2019-03-29 16:14 UTC (permalink / raw)
  To: David Marchand; +Cc: thomas, dev

David Marchand <david.marchand@redhat.com> writes:

> The ARM64 config file has been renamed in the commit
> ae2f2fee247a ("build: rename linuxapp to linux in meson cross files").
>
> Fixes: 99889bd85228 ("ci: introduce Travis builds for GitHub repositories")
> Signed-off-by: David Marchand <david.marchand@redhat.com>
> ---

Thanks for the fix - I'll drop it from my testing series.

Acked-by: Aaron Conole <aconole@redhat.com>

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [dpdk-dev] [PATCH] ci: fix arm64 config filename
  2019-03-29 16:14 ` Aaron Conole
  2019-03-29 16:14   ` Aaron Conole
@ 2019-03-29 23:02   ` Thomas Monjalon
  2019-03-29 23:02     ` Thomas Monjalon
  1 sibling, 1 reply; 6+ messages in thread
From: Thomas Monjalon @ 2019-03-29 23:02 UTC (permalink / raw)
  To: David Marchand; +Cc: dev, Aaron Conole, msantana

29/03/2019 17:14, Aaron Conole:
> David Marchand <david.marchand@redhat.com> writes:
> 
> > The ARM64 config file has been renamed in the commit
> > ae2f2fee247a ("build: rename linuxapp to linux in meson cross files").
> >
> > Fixes: 99889bd85228 ("ci: introduce Travis builds for GitHub repositories")
> > Signed-off-by: David Marchand <david.marchand@redhat.com>
> > ---
> 
> Thanks for the fix - I'll drop it from my testing series.
> 
> Acked-by: Aaron Conole <aconole@redhat.com>

Applied, thanks

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [dpdk-dev] [PATCH] ci: fix arm64 config filename
  2019-03-29 23:02   ` Thomas Monjalon
@ 2019-03-29 23:02     ` Thomas Monjalon
  0 siblings, 0 replies; 6+ messages in thread
From: Thomas Monjalon @ 2019-03-29 23:02 UTC (permalink / raw)
  To: David Marchand; +Cc: dev, Aaron Conole, msantana

29/03/2019 17:14, Aaron Conole:
> David Marchand <david.marchand@redhat.com> writes:
> 
> > The ARM64 config file has been renamed in the commit
> > ae2f2fee247a ("build: rename linuxapp to linux in meson cross files").
> >
> > Fixes: 99889bd85228 ("ci: introduce Travis builds for GitHub repositories")
> > Signed-off-by: David Marchand <david.marchand@redhat.com>
> > ---
> 
> Thanks for the fix - I'll drop it from my testing series.
> 
> Acked-by: Aaron Conole <aconole@redhat.com>

Applied, thanks



^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2019-03-29 23:02 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-03-29 15:55 [dpdk-dev] [PATCH] ci: fix arm64 config filename David Marchand
2019-03-29 15:55 ` David Marchand
2019-03-29 16:14 ` Aaron Conole
2019-03-29 16:14   ` Aaron Conole
2019-03-29 23:02   ` Thomas Monjalon
2019-03-29 23:02     ` Thomas Monjalon

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).